summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2017-12-09 16:53:10 +0100
committerFlorian Westphal <fw@strlen.de>2017-12-09 20:46:03 +0100
commitb0521ad2af7fc7a19cb3cccd34332293e631b337 (patch)
tree433eec5a44d6b0af23602c9658e47864e70eafe7
parentd572d59788143945c2a638f12a5227d9b21ce489 (diff)
tests/py: trivial: Fix error message
The error message for failed chain creation quotes the chain's name but lacked the closing tick. Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Florian Westphal <fw@strlen.de>
-rwxr-xr-xtests/py/nft-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/py/nft-test.py b/tests/py/nft-test.py
index 9ad97714..6aedfb09 100755
--- a/tests/py/nft-test.py
+++ b/tests/py/nft-test.py
@@ -248,7 +248,7 @@ def chain_create(chain, table, filename):
ret = execute_cmd(cmd, filename, chain.lineno)
if ret != 0:
- reason = "I cannot create the chain '" + chain.name
+ reason = "I cannot create the chain '" + chain.name + "'"
print_error(reason, filename, chain.lineno)
return -1