summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Lange <jml@mumak.net>2015-11-06 13:18:22 +0000
committerJonathan Lange <jml@mumak.net>2015-11-06 13:18:22 +0000
commit5690ca26a02b8d4667576de79c3596a44e64646b (patch)
tree4e2889c9ab8049f74e8254b15568e83f5f7c5727
parent5c308ec9894d341d052bdbb857c2d2f82db0947c (diff)
downloadtesttools-5690ca26a02b8d4667576de79c3596a44e64646b.tar.gz
Update PlaceHolder indentation
-rw-r--r--testtools/testresult/real.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testtools/testresult/real.py b/testtools/testresult/real.py
index fbee630..8773c65 100644
--- a/testtools/testresult/real.py
+++ b/testtools/testresult/real.py
@@ -711,9 +711,9 @@ def test_dict_to_case(test_dict):
if PlaceHolder is None:
from testtools.testcase import PlaceHolder
outcome = _status_map[test_dict['status']]
- return PlaceHolder(test_dict['id'], outcome=outcome,
- details=test_dict['details'], tags=test_dict['tags'],
- timestamps=test_dict['timestamps'])
+ return PlaceHolder(
+ test_dict['id'], outcome=outcome, details=test_dict['details'],
+ tags=test_dict['tags'], timestamps=test_dict['timestamps'])
class StreamSummary(StreamToDict):