Re: [PATCH 1/1] t1308-config-set: fix a test that has a typo

2019-10-10 Thread Junio C Hamano
Johannes Schindelin writes: > I should note that I looked through all of the hits of `git grep -w > except -- t/` and did not find any other typo. Thanks.

Re: [PATCH 1/1] t1308-config-set: fix a test that has a typo

2019-10-10 Thread Johannes Schindelin
Team, On Thu, 10 Oct 2019, Tanay Abhra via GitGitGadget wrote: > diff --git a/t/t1308-config-set.sh b/t/t1308-config-set.sh > index d0a2727b85..7b4e1a63eb 100755 > --- a/t/t1308-config-set.sh > +++ b/t/t1308-config-set.sh > @@ -166,14 +166,14 @@ test_expect_success 'find value with highest priori

[PATCH 1/1] t1308-config-set: fix a test that has a typo

2019-10-10 Thread Tanay Abhra via GitGitGadget
From: Tanay Abhra Change test 'find value_list for a key from a configset' to redirect the result to 'expect' instead of 'except' which was a typo. With this change, the test case actually fails because it uses `configset_get_value`. Clearly, this was intended to be `configset_get_value_multi` s