Skip to content

Commit

Permalink
#254 prefer single-quoted strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Suban05 committed Aug 13, 2024
1 parent 3d33bc9 commit 1302b1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/judges/test-quantity-of-deliverables.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_counts_commits
'content-type': 'application/json'
}
)
stub_request(:get, "https://api.github.com/repos/foo/foo/commits?per_page=100&since=2024-07-15T21:00:00%2B00:00").to_return(
stub_request(:get, 'https://api.github.com/repos/foo/foo/commits?per_page=100&since=2024-07-15T21:00:00%2B00:00').to_return(
body: [
{
sha: 'bcb3cd5c2a6f3daebe1a2ab16a195a0bf2609943'
Expand Down Expand Up @@ -112,7 +112,7 @@ def test_processes_empty_repository
'content-type': 'application/json'
}
)
stub_request(:get, "https://api.github.com/repos/foo/foo/commits?per_page=100&since=2024-07-15T21:00:00%2B00:00").to_return(
stub_request(:get, 'https://api.github.com/repos/foo/foo/commits?per_page=100&since=2024-07-15T21:00:00%2B00:00').to_return(
status: 409,
body: [].to_json,
headers: {
Expand Down

0 comments on commit 1302b1a

Please sign in to comment.