Skip to content

Commit

Permalink
tests: make check_export accept quotes around value
Browse files Browse the repository at this point in the history
check_export did not expect the quotes around the value in the output of
"kdb set". It now does.

 #2423
  • Loading branch information
llukask authored and kodebach committed Sep 29, 2020
1 parent 48689f3 commit b5200e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/shell/check_export.sh
Expand Up @@ -40,7 +40,7 @@ for PLUGIN in $PLUGINS; do
diff "$DATADIR"/one_value.$PLUGIN $FILE
succeed_if "Export file one_value.$PLUGIN was not equal"

test "$("$KDB" set $ROOT/key "value")" = "Create a new key $ROOT/key with string value"
test "$("$KDB" set $ROOT/key "value")" = "Create a new key $ROOT/key with string \"value\""
succeed_if "Could not set $ROOT/key"

"$KDB" export $ROOT $PLUGIN > $FILE
Expand Down

0 comments on commit b5200e4

Please sign in to comment.