Skip to content

Commit

Permalink
Add comment about disabled check in test_fs_online_tree_and_sync
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Feb 18, 2019
1 parent b237d85 commit 1b6abab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/core/fs/test_fs_online_tree_and_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,10 @@ async def _stat(self, path):
else:
stat = await self.fs.stat(path)
assert stat["type"] == expected["type"]
# Skip base version for the moment
# TODO: oracle's `base_version` is broken (synchronization
# strategy with parent placeholder make it complex to get right)
# assert stat["base_version"] == expected["base_version"]
assert stat["base_version"] > 0
assert stat["is_placeholder"] == expected["is_placeholder"]
assert stat["need_sync"] == expected["need_sync"]

Expand Down

0 comments on commit 1b6abab

Please sign in to comment.