@@ -95,7 +95,6 @@ async def test_git_pull_with_auth_fail():
9595
9696@pytest .mark .asyncio
9797async def test_git_pull_success ():
98-
9998 with patch ("os.environ" , {"TEST" : "test" }):
10099 with patch ("jupyterlab_git.git.execute" ) as mock_execute :
101100 # Given
@@ -116,7 +115,6 @@ async def test_git_pull_success():
116115
117116@pytest .mark .asyncio
118117async def test_git_pull_with_auth_success ():
119-
120118 with patch ("os.environ" , {"TEST" : "test" }):
121119 with patch ("jupyterlab_git.git.execute" ) as mock_execute_with_authentication :
122120 # Given
@@ -287,7 +285,6 @@ async def test_git_push_fail():
287285
288286@pytest .mark .asyncio
289287async def test_git_push_with_auth_fail ():
290-
291288 with patch ("os.environ" , {"TEST" : "test" }):
292289 with patch ("jupyterlab_git.git.execute" ) as mock_execute_with_authentication :
293290 # Given
@@ -321,7 +318,6 @@ async def test_git_push_with_auth_fail():
321318
322319@pytest .mark .asyncio
323320async def test_git_push_success ():
324-
325321 with patch ("os.environ" , {"TEST" : "test" }):
326322 with patch ("jupyterlab_git.git.execute" ) as mock_execute :
327323 # Given
@@ -344,7 +340,6 @@ async def test_git_push_success():
344340
345341@pytest .mark .asyncio
346342async def test_git_push_with_auth_success ():
347-
348343 with patch ("os.environ" , {"TEST" : "test" }):
349344 with patch ("jupyterlab_git.git.execute" ) as mock_execute_with_authentication :
350345 # Given
0 commit comments