Skip to content

Commit d588093

Browse files
readability
1 parent c19e535 commit d588093

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_cqgi.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ def test_that_invalid_syntax_in_script_fails_immediately(self):
113113
"""
114114
)
115115

116-
xcptn = None
116+
exception = None
117117
try:
118118
cqgi.CQModel(badscript)
119119
except Exception as e:
120-
xcptn = e
120+
exception = e
121121

122-
self.assertIsInstance(xcptn, SyntaxError)
122+
self.assertIsInstance(exception, SyntaxError)
123123

124124
def test_that_two_results_are_returned(self):
125125
script = textwrap.dedent(

0 commit comments

Comments
 (0)