Skip to content

Commit

Permalink
Merge branch 'tickets/DM-31355'
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenam committed Aug 11, 2021
2 parents 2be2369 + f43a4e4 commit fb27071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def testPickling(self):
stream = pickle.dumps(self.task)
copy = pickle.loads(stream)
self.assertEqual(self.task.getFullName(), copy.getFullName())
self.assertEqual(self.task.log.getName(), copy.log.getName())
self.assertEqual(self.task.log.name, copy.log.name)
# Equality for config ill-behaved; skip testing it
self.assertEqual(self.task.dataset, copy.dataset)
self.assertEqual(self.task.workspace, copy.workspace)
Expand Down

0 comments on commit fb27071

Please sign in to comment.