From cc9794ee5309782b5df1b782aa2e15bbd5068612 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 27 Feb 2015 14:04:52 -0500 Subject: Fix test failure due to line number change in test_cipher.py I'm not going to commit a million of these 1-liners but I think the code is stable enough that it won't be a big deal. If it happens again I'll see about adding a fuzzer to assert_equal() to avoid line number differences. --- test/test_cipher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_cipher.py') diff --git a/test/test_cipher.py b/test/test_cipher.py index 429d086..55989bd 100644 --- a/test/test_cipher.py +++ b/test/test_cipher.py @@ -159,4 +159,4 @@ class test_ciphers(object): def test_invalid_format(self): (out, err, rc) = run([exe, "none"]) assert rc == 1 - assert_equal(err, 'nss_engine_cipher.c:292, invalid cipher string none. Format is +cipher1,-cipher2...Unable to parse cipher list') + assert_equal(err, 'nss_engine_cipher.c:291, invalid cipher string none. Format is +cipher1,-cipher2...Unable to parse cipher list') -- cgit