Skip to content

Commit

Permalink
add equality check to test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
furkanonder committed Sep 11, 2023
1 parent ef0df6a commit 026d1e2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Lib/test/test_codecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1825,7 +1825,6 @@ def test_pickle(self):
unpickled_codec_info = pickle.loads(pickled_codec_info)
self.assertIsNot(codec_info, unpickled_codec_info)
self.assertEqual(codec_info, unpickled_codec_info)
self.assertEqual(unpickled_codec_info.name, codec_info.name)
self.assertEqual(codec_info.name, unpickled_codec_info.name)
self.assertEqual(
codec_info.incrementalencoder,
Expand Down

0 comments on commit 026d1e2

Please sign in to comment.