diff options
author | Tim Gates <tim.gates@iress.com> | 2021-09-15 04:10:27 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 20:10:27 +0200 |
commit | 714df3c2102630a80691c4248b0b7babda5d128b (patch) | |
tree | 67cfac9db547b63f98431556a210c9a5f91bdb0c /ext_tests.py | |
parent | e0b3a9b1fd57bbf9095163dc8c65dd64897b7ca2 (diff) | |
download | python-json-patch-master.tar.gz |
Diffstat (limited to 'ext_tests.py')
-rwxr-xr-x | ext_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext_tests.py b/ext_tests.py index 2770c8e..1fd8d8f 100755 --- a/ext_tests.py +++ b/ext_tests.py @@ -65,7 +65,7 @@ class TestCaseTemplate(unittest.TestCase): raise Exception(test.get('comment', '')) from jpe # if there is no 'expected' we only verify that applying the patch - # does not raies an exception + # does not raise an exception if 'expected' in test: self.assertEquals(res, test['expected'], test.get('comment', '')) |