Skip to content

Commit

Permalink
Merge 6b8a42b into 531fe30
Browse files Browse the repository at this point in the history
  • Loading branch information
itamarst committed Dec 2, 2021
2 parents 531fe30 + 6b8a42b commit 9d5940a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Empty file added newsfragments/3850.minor
Empty file.
8 changes: 8 additions & 0 deletions src/allmydata/test/test_storage_http.py
Expand Up @@ -63,7 +63,15 @@ def test_bad_authentication(self):
def test_version(self):
"""
The client can return the version.
We ignore available disk space since that might change across calls.
"""
version = yield self.client.get_version()
version[b"http://allmydata.org/tahoe/protocols/storage/v1"].pop(
b"available-space"
)
expected_version = self.storage_server.remote_get_version()
expected_version[b"http://allmydata.org/tahoe/protocols/storage/v1"].pop(
b"available-space"
)
self.assertEqual(version, expected_version)

0 comments on commit 9d5940a

Please sign in to comment.