We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c19e535 commit d588093Copy full SHA for d588093
tests/test_cqgi.py
@@ -113,13 +113,13 @@ def test_that_invalid_syntax_in_script_fails_immediately(self):
113
"""
114
)
115
116
- xcptn = None
+ exception = None
117
try:
118
cqgi.CQModel(badscript)
119
except Exception as e:
120
- xcptn = e
+ exception = e
121
122
- self.assertIsInstance(xcptn, SyntaxError)
+ self.assertIsInstance(exception, SyntaxError)
123
124
def test_that_two_results_are_returned(self):
125
script = textwrap.dedent(
0 commit comments