Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rebkwok committed Sep 4, 2024
1 parent e4caa1d commit 1dce6de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airlock/permissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def user_can_review_request(user: User, request: "ReleaseRequest"):

def check_user_can_currently_review_request(user: User, request: "ReleaseRequest"):
"""
This user can currently perform reviewer actions on the on this
This user can currently perform reviewer actions on this
request (vote on files, return, release, reject)
"""
check_user_can_review_request(user, request)
Expand Down
2 changes: 1 addition & 1 deletion tests/local_db/test_data_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def test_withdraw_file_from_request_file_does_not_exist():
files=[factories.request_file(changes_requested=True, path="foo.txt")],
)

# foo.txt does not exist and can't be withdrawn
# bar.txt does not exist and can't be withdrawn
with pytest.raises(exceptions.FileNotFound):
dal.withdraw_file_from_request(
release_request.id,
Expand Down

0 comments on commit 1dce6de

Please sign in to comment.