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 ed99f4c commit 4d88779Copy full SHA for 4d88779
1 file changed
Lib/test/test_annotationlib.py
@@ -1255,8 +1255,8 @@ def test_user_annotate_forwardref(self):
1255
)
1256
1257
annotate.assert_has_calls([
1258
- unittest.mock.Call(Format.FORWARDREF),
1259
- unittest.mock.Call(Format.VALUE_WITH_FAKE_GLOBALS),
+ unittest.mock.call(Format.FORWARDREF),
+ unittest.mock.call(Format.VALUE_WITH_FAKE_GLOBALS),
1260
])
1261
1262
def test_user_annotate_string(self):
@@ -1269,8 +1269,8 @@ def test_user_annotate_string(self):
1269
1270
1271
1272
- unittest.mock.Call(Format.STRING),
1273
+ unittest.mock.call(Format.STRING),
1274
1275
1276
0 commit comments