diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-08-01 17:31:51 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-08-01 17:31:51 +0200 |
commit | 9295656277c8cc6ad1cf0f7c1ef85856e5049cb0 (patch) | |
tree | 0dae3383dd863d5fd0449ace6a3a547c0e6a16c7 /docs | |
parent | ab3de8a911beac7b671f8a6681bc0b63711c11e7 (diff) |
Fix whitespace in docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/testing.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/source/testing.rst b/docs/source/testing.rst index 1ddf5e5..1191bec 100644 --- a/docs/source/testing.rst +++ b/docs/source/testing.rst @@ -23,13 +23,13 @@ following example:: class testGreeter(hazwaz.unittest.HazwazTestCase): def test_greet_world(self): - cmd = greeter.Greet() - stream = self.run_with_argv(cmd, [ - "./greeter.py", - "world", - ]) - - self.assertEqual( + cmd = greeter.Greet() + stream = self.run_with_argv(cmd, [ + "./greeter.py", + "world", + ]) + + self.assertEqual( stream["stdout"].getvalue(), "Hello world!\n" ) |