Skip to content

Commit 4d88779

Browse files
committed
call is lower case
1 parent ed99f4c commit 4d88779

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/test/test_annotationlib.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,8 +1255,8 @@ def test_user_annotate_forwardref(self):
12551255
)
12561256

12571257
annotate.assert_has_calls([
1258-
unittest.mock.Call(Format.FORWARDREF),
1259-
unittest.mock.Call(Format.VALUE_WITH_FAKE_GLOBALS),
1258+
unittest.mock.call(Format.FORWARDREF),
1259+
unittest.mock.call(Format.VALUE_WITH_FAKE_GLOBALS),
12601260
])
12611261

12621262
def test_user_annotate_string(self):
@@ -1269,8 +1269,8 @@ def test_user_annotate_string(self):
12691269
)
12701270

12711271
annotate.assert_has_calls([
1272-
unittest.mock.Call(Format.STRING),
1273-
unittest.mock.Call(Format.VALUE_WITH_FAKE_GLOBALS),
1272+
unittest.mock.call(Format.STRING),
1273+
unittest.mock.call(Format.VALUE_WITH_FAKE_GLOBALS),
12741274
])
12751275

12761276

0 commit comments

Comments
 (0)