summaryrefslogtreecommitdiff
path: root/tests/utils/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils/misc.py')
-rw-r--r--tests/utils/misc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/utils/misc.py b/tests/utils/misc.py
index ae584e4d5..7df08aec5 100644
--- a/tests/utils/misc.py
+++ b/tests/utils/misc.py
@@ -27,4 +27,5 @@ def test_parse_size_over_1024T(cli, tmpdir):
patched_statvfs = mock_os.mock_statvfs(f_bavail=bavail, f_bsize=BLOCK_SIZE)
with mock_os.monkey_patch("statvfs", patched_statvfs):
result = cli.run(project, args=["build", "file.bst"])
- assert "1025T of available system storage" in result.stderr
+ failure_msg = 'Your system does not have enough available space to support the cache quota specified.'
+ assert failure_msg in result.stderr