Skip to content

Commit

Permalink
use different url in tests (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasJenicek committed Apr 8, 2024
1 parent 6cedd2c commit 0e4e294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema/ridl/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ func TestParseServiceComments(t *testing.T) {
service ContactsService # Contacts service line 3
#! skip this line
# GetContact gives you contact for specific id
# see https://docs.opensea.io/docs/metadata-standards
# see https://www.example.com/?first=1&second=12#help
- GetContact(id: int) => (contact: Contact)
# Version returns you current deployed version
#
Expand All @@ -1016,6 +1016,6 @@ func TestParseServiceComments(t *testing.T) {
}

assert.Equal(t, "Contacts service line 1\nContacts service line 2\nContacts service line 3", serviceNode.comment)
assert.Equal(t, "GetContact gives you contact for specific id\nsee https://docs.opensea.io/docs/metadata-standards", serviceNode.methods[0].comment)
assert.Equal(t, "GetContact gives you contact for specific id\nsee https://www.example.com/?first=1&second=12#help", serviceNode.methods[0].comment)
assert.Equal(t, "Version returns you current deployed version\n", serviceNode.methods[1].comment)
}

0 comments on commit 0e4e294

Please sign in to comment.