summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Leeming <andrew.leeming@codethink.co.uk>2016-10-06 12:15:14 +0100
committerAndrew Leeming <andrew.leeming@codethink.co.uk>2016-10-06 12:15:14 +0100
commitadf1bb9f789ab19339b9882fb4bdd2c047e59b37 (patch)
tree0385fbf2fb70843e40f884cc236c02351acc49cc
parent2a7c265aa9743b8b501a750b33e1e2c6a9ef609f (diff)
downloadsandboxlib-fix-tiago.tar.gz
Fixing minor indentation bugfix-tiago
-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):