Skip to content

Commit

Permalink
Make quotes consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkram committed Aug 28, 2024
1 parent 660cd88 commit b9d1a25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def test_upload_file(self, registry):
registry.assertAllCalled()
self.assertIsNotNone(json.loads(staging_response.req.body).get('sha256'))

@pytest.mark.xfail(reason="anaconda-project removed")
@pytest.mark.xfail(reason='anaconda-project removed')
@urlpatch
def test_upload_project(self, registry):
# there's redundant work between anaconda-client which checks auth and anaconda-project also checks auth;
Expand All @@ -244,7 +244,7 @@ def test_upload_project(self, registry):

registry.assertAllCalled()

@pytest.mark.xfail(reason="anaconda-project removed")
@pytest.mark.xfail(reason='anaconda-project removed')
@urlpatch
def test_upload_notebook_as_project(self, registry):
registry.register(method='HEAD', path='/', status=200)
Expand Down Expand Up @@ -293,7 +293,7 @@ def test_upload_notebook_as_package(self, registry):
registry.assertAllCalled()
self.assertIsNotNone(json.loads(staging_response.req.body).get('sha256'))

@pytest.mark.xfail(reason="anaconda-project removed")
@pytest.mark.xfail(reason='anaconda-project removed')
@urlpatch
def test_upload_project_specifying_user(self, registry):
registry.register(method='HEAD', path='/', status=200)
Expand All @@ -311,7 +311,7 @@ def test_upload_project_specifying_user(self, registry):

registry.assertAllCalled()

@pytest.mark.xfail(reason="anaconda-project removed")
@pytest.mark.xfail(reason='anaconda-project removed')
@urlpatch
def test_upload_project_specifying_token(self, registry):
registry.register(method='HEAD', path='/', status=200)
Expand Down

0 comments on commit b9d1a25

Please sign in to comment.