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 0732934 commit af29db7Copy full SHA for af29db7
googlemock/test/gmock_output_test.py
@@ -161,13 +161,13 @@ def testOutput(self):
161
golden_file.close()
162
163
# The normalized output should match the golden file.
164
- self.assertEquals(golden, output)
+ self.assertEqual(golden, output)
165
166
# The raw output should contain 2 leaked mock object errors for
167
# test GMockOutputTest.CatchesLeakedMocks.
168
- self.assertEquals(['GMockOutputTest.CatchesLeakedMocks',
169
- 'GMockOutputTest.CatchesLeakedMocks'],
170
- leaky_tests)
+ self.assertEqual(['GMockOutputTest.CatchesLeakedMocks',
+ 'GMockOutputTest.CatchesLeakedMocks'],
+ leaky_tests)
171
172
173
if __name__ == '__main__':
0 commit comments