diff --git a/newsfragments/3850.minor b/newsfragments/3850.minor new file mode 100644 index 000000000..e69de29bb diff --git a/src/allmydata/test/test_storage_http.py b/src/allmydata/test/test_storage_http.py index 442e154a0..e30eb24c7 100644 --- a/src/allmydata/test/test_storage_http.py +++ b/src/allmydata/test/test_storage_http.py @@ -63,7 +63,15 @@ class HTTPTests(TestCase): 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)