Skip to content

Commit

Permalink
test: fix wrong date format in fixture (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
bfabio committed Jun 17, 2023
1 parent b6b7d58 commit fa37c16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2354,7 +2354,7 @@ func TestSoftwareEndpoints(t *testing.T) {

links := response["links"].(map[string]interface{})
assert.Nil(t, links["prev"])
assert.Equal(t, "?page[after]=WyIwMDAxLTAxLTAxVDAwOjAwOjAwWiIsImU3ZjZkYmRhLWMzZjUtNGIyZi1iM2Q4LTM5YTM0MDI2ZTYwYSJd", links["next"])
assert.Equal(t, "?page[after]=WyIyMDE3LTA1LTAxVDAwOjAwOjAwWiIsImU3ZjZkYmRhLWMzZjUtNGIyZi1iM2Q4LTM5YTM0MDI2ZTYwYSJd", links["next"])
},
},

Expand Down
4 changes: 2 additions & 2 deletions test/testdata/fixtures/webhooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
entity_type: software
secret:
url: https://3-a.example.org/receiver
created_at: '2017-05-01t00:00:00+00:00'
updated_at: '2017-05-01t00:00:00+00:00'
created_at: '2017-05-01T00:00:00+00:00'
updated_at: '2017-05-01T00:00:00+00:00'
- id: d6334000-69a8-43a1-ab43-50bb04e14eed
entity_id: 9f135268-a37e-4ead-96ec-e4a24bb9344a
entity_type: software
Expand Down

0 comments on commit fa37c16

Please sign in to comment.