We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 322ed7b commit ff24fbcCopy full SHA for ff24fbc
1 file changed
tests.sh
@@ -8,7 +8,8 @@ t() {
8
expected="${@:$#}"
9
args="${@:1:($#-1)}"
10
echo -e "\n./jsonpath.py $args"
11
- output=$(time -p ./jsonpath.py $args)
+ output=$(./jsonpath.py $args)
12
+ # output=$(time -p ./jsonpath.py $args)
13
if [ "$output" = "$expected" ]; then
14
echo -e "${GREEN}- pass${NC}"
15
else
@@ -41,4 +42,4 @@ t tests/array.json "2.value" "4:26"
41
42
t tests/array.json "3.numbers.0" "6:5"
43
t tests/restcountries.json "219.capital" "17806:13"
44
t tests/restcountries.json "85.latlng.0" "6963:4"
-t tests/unicode.json "👍" "1:34"
45
+t tests/unicode.json "👍" "1:35"
0 commit comments