diff options
author | Daniil Baturin <daniil@baturin.org> | 2013-05-31 07:35:30 -0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2013-05-31 07:35:30 -0700 |
commit | 2e3b76bff7717336af9614cce169e6cc0dcafea9 (patch) | |
tree | af78e4ff90a4b643b552271741a4162d1a1ddd13 | |
parent | cbdaf355f76a5adbfd88614515325eed72429003 (diff) | |
download | ipaddrcheck-2e3b76bff7717336af9614cce169e6cc0dcafea9.tar.gz ipaddrcheck-2e3b76bff7717336af9614cce169e6cc0dcafea9.zip |
Remove fake failure from integration tests.
-rwxr-xr-x | tests/integration_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration_tests.sh b/tests/integration_tests.sh index f4b36c2..531209f 100755 --- a/tests/integration_tests.sh +++ b/tests/integration_tests.sh @@ -30,7 +30,7 @@ assert_raises "$IPADDRCHECK --is-valid 192.0.2.1/24" 0 assert_raises "$IPADDRCHECK --is-valid 192.0.2.0/26" 0 assert_raises "$IPADDRCHECK --is-valid 2001:db8::1" 0 assert_raises "$IPADDRCHECK --is-valid 2001:db8::/56" 0 -assert_raises "$IPADDRCHECK --is-valid 192.0.2.666" 0 +assert_raises "$IPADDRCHECK --is-valid 192.0.2.666" 1 assert_raises "$IPADDRCHECK --is-valid garbage" 1 assert_end ipaddrcheck_integration |