Skip to content

Commit

Permalink
Commented out test case due to issue #66
Browse files Browse the repository at this point in the history
  • Loading branch information
jfischer committed Dec 20, 2020
1 parent 98bf184 commit acdd62f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_rclone.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,12 @@ def test_copy_remote_is_master(self):
self.assertEqual(len(history), 2)
snap1 = history[0]
self.assertEqual(['tag1'], snap1.tags)
self.assertEqual('7f9d012afa6bb1f69231aaeae87f8b26cd1bc840', snap1.hashval)
# FIXME (issue #66): need to comment out compare as hash includes file paths
#self.assertEqual('7f9d012afa6bb1f69231aaeae87f8b26cd1bc840', snap1.hashval)
snap2 = history[1]
self.assertEqual(['tag2'], snap2.tags)
self.assertEqual('d87d1467e1f966928cd7b11da2e9a40055426979', snap2.hashval)
# FIXME (issue #66): need to comment out compare as hash includes file paths
#self.assertEqual('d87d1467e1f966928cd7b11da2e9a40055426979', snap2.hashval)

def test_sync_remote_is_master(self):
"""Will pull changes down from master in sync mode.
Expand Down

0 comments on commit acdd62f

Please sign in to comment.