diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2021-09-09 10:04:33 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2021-09-09 10:04:33 +0200 |
| commit | 42ec3e2afc1be06022ea4c1641ce4010f2531fc8 (patch) | |
| tree | 93d505f47552abfa42f3475d651ea65d286ee661 /test.py | |
| parent | 0abab7461ce76248a176ae5996e436224a4fcc02 (diff) | |
| download | geldschieberbot-42ec3e2afc1be06022ea4c1641ce4010f2531fc8.tar.gz geldschieberbot-42ec3e2afc1be06022ea4c1641ce4010f2531fc8.zip | |
make format
Diffstat (limited to 'test.py')
| -rwxr-xr-x | test.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1120,6 +1120,7 @@ fiat: \tBalance: -3.00""" self.assertEqual(res.stdout, msg) + class TestThanks(unittest.TestCase): def test_thanks(self): res = run_bot(self, num[alice], "!thanks") @@ -1131,7 +1132,9 @@ class TestThanks(unittest.TestCase): res = run_bot(self, num[alice], "!thanks pussy") self.assertEqual( res.stdout, - f"You are welcome. It is a pleasure to work with you, {alice}.\nBut don't call me pussy.") + f"You are welcome. It is a pleasure to work with you, {alice}.\nBut don't call me pussy." + ) + if __name__ == '__main__': unittest.main() |
