This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new 824bf15  Now throws ValueError
824bf15 is described below

commit 824bf157942caf3494a329f57a550ad1f90cab27
Author: Sebb <[email protected]>
AuthorDate: Thu Nov 18 22:47:05 2021 +0000

    Now throws ValueError
---
 test/test_defuzzer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/test_defuzzer.py b/test/test_defuzzer.py
index f41a997..2380d0b 100644
--- a/test/test_defuzzer.py
+++ b/test/test_defuzzer.py
@@ -23,6 +23,6 @@ import pytest
 from server.plugins.defuzzer import defuzz
 
 def test_defuzzer_1():
-    with pytest.raises(AssertionError) as excinfo:
+    with pytest.raises(ValueError) as excinfo:
         defuzz({'list': '@'})
     assert 'cannot contain @' in str(excinfo.value)

Reply via email to