Skip to content

Commit

Permalink
better names
Browse files Browse the repository at this point in the history
  • Loading branch information
loechel committed May 4, 2017
1 parent 5b626ea commit 23c721a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Products/PythonScripts/tests/testPythonScript.py
Expand Up @@ -278,8 +278,8 @@ def testAttributeAssignment(self):

for defn, name in cases:
for asn in assigns:
f = self._newPS(defn + "\n" + asn % name)
self.assertRaises(TypeError, f)
func = self._newPS(defn + "\n" + asn % name)
self.assertRaises(TypeError, func)


class TestPythonScriptGlobals(PythonScriptTestBase, WarningInterceptor):
Expand Down

0 comments on commit 23c721a

Please sign in to comment.