Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bats-core/bats-assert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Wheeler <joshwheeler33@gmail.com>2021-11-04 23:21:11 +0300
committerJosh Wheeler <joshwheeler33@gmail.com>2021-11-04 23:21:11 +0300
commita04c086c1bdaf71cc9b99d0cfeb8b91b7e575d35 (patch)
treebd66eb9cd68ac8d6169ee096868ef67658dd1dba
parent38bfbf61443c046acf91b678a5a8eb5a0ab13000 (diff)
Added missing assertion.
-rw-r--r--test/assert_not_equal.bats1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/assert_not_equal.bats b/test/assert_not_equal.bats
index 28f0142..42b5315 100644
--- a/test/assert_not_equal.bats
+++ b/test/assert_not_equal.bats
@@ -13,6 +13,7 @@ load test_helper
assert_test_pass
run assert_not_equal "" "foo"
+ assert_test_pass
}
@test 'assert_not_equal() <actual> <unexpected>: returns 1 and displays details if <actual> equals <unexpected>' {