summaryrefslogtreecommitdiff
path: root/tests/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_all.py')
-rw-r--r--tests/test_all.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_all.py b/tests/test_all.py
index 8dff74a..eed6d26 100644
--- a/tests/test_all.py
+++ b/tests/test_all.py
@@ -158,15 +158,15 @@ class TestMounts(object):
exit, out, err = sandboxlib_executor.run_sandbox(
['true'], extra_mounts=[('proc', None, 'tmpfs')])
- assert excinfo.value.message == (
- "Mount point empty in mount entry ('proc', None, 'tmpfs')")
+ assert excinfo.value.message == (
+ "Mount point empty in mount entry ('proc', None, 'tmpfs')")
with pytest.raises(AssertionError) as excinfo:
exit, out, err = sandboxlib_executor.run_sandbox(
['true'], extra_mounts=[('proc', 'tmpfs')])
- assert excinfo.value.message == (
- "Invalid mount entry in 'extra_mounts': ('proc', 'tmpfs')")
+ assert excinfo.value.message == (
+ "Invalid mount entry in 'extra_mounts': ('proc', 'tmpfs')")
class TestWriteablePaths(object):