diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-12-27 19:11:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-27 19:11:01 +0100 |
| commit | c6922ae7c5e53f695d5f5f8704b10b4e2815cda4 (patch) | |
| tree | 9c0456ad1a1d9d375311ccd8c9bd3eafd0779114 /tests/unit/engines/test_command.py | |
| parent | 54bce130f9074c3d63009237b014c727a1443cc5 (diff) | |
| parent | d84226bf63757b1d4245ab26e9c081daf42389aa (diff) | |
Merge pull request #619 from dalf/apply-black
Apply black
Diffstat (limited to 'tests/unit/engines/test_command.py')
| -rw-r--r-- | tests/unit/engines/test_command.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/unit/engines/test_command.py b/tests/unit/engines/test_command.py index d2bb123f7..7876dd55e 100644 --- a/tests/unit/engines/test_command.py +++ b/tests/unit/engines/test_command.py @@ -114,7 +114,6 @@ INFO:werkzeug: * Debugger PIN: 299-578-362''' 'template': 'key-value.html', 'level': 'DEBUG', }, - ], [ { @@ -136,7 +135,6 @@ INFO:werkzeug: * Debugger PIN: 299-578-362''' 'level': 'INFO', }, ], - ] for i in [0, 1]: @@ -171,7 +169,7 @@ commit ''' 'commit': '\w{40}', 'author': '[\w* ]* <\w*@?\w*\.?\w*>', 'date': 'Date: .*', - 'message': '\n\n.*$' + 'message': '\n\n.*$', } expected_results = [ { @@ -195,7 +193,6 @@ commit ''' 'message': '\n\nthird interesting message', 'template': 'key-value.html', }, - ] results = git_log_engine.search(''.encode('utf-8'), {'pageno': 1}) |