Skip to content

Commit 3c33d1b

Browse files
author
Frederic Collonval
committed
Correct test_branch_success
1 parent fd92305 commit 3c33d1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyterlab_git/tests/test_branch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,9 +590,9 @@ async def test_branch_success():
590590

591591
mock_execute.side_effect = [
592592
# Response for get all refs/heads
593-
tornado.gen.maybe_future((128, "\n".join(process_output_heads), "")),
593+
tornado.gen.maybe_future((0, "\n".join(process_output_heads), "")),
594594
# Response for get all refs/remotes
595-
tornado.gen.maybe_future((128, "\n".join(process_output_remotes), "")),
595+
tornado.gen.maybe_future((0, "\n".join(process_output_remotes), "")),
596596
]
597597

598598
expected_response = {

0 commit comments

Comments
 (0)