summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2021-09-15 04:10:27 +1000
committerGitHub <noreply@github.com>2021-09-14 20:10:27 +0200
commit714df3c2102630a80691c4248b0b7babda5d128b (patch)
tree67cfac9db547b63f98431556a210c9a5f91bdb0c
parente0b3a9b1fd57bbf9095163dc8c65dd64897b7ca2 (diff)
downloadpython-json-patch-master.tar.gz
docs: fix simple typo, raies -> raise (#135)HEADmaster
-rwxr-xr-xext_tests.py2
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', ''))