Skip to content

Commit

Permalink
Merge pull request #439 from tablelandnetwork/joe/update-dns
Browse files Browse the repository at this point in the history
Update the tests to reflect new dns values
  • Loading branch information
joewagner authored Jan 19, 2023
2 parents cd9f930 + abd468b commit e7dd50a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/api/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type HTTPConfig struct {

// GatewayConfig contains configuration for the Gateway.
type GatewayConfig struct {
ExternalURIPrefix string `default:"https://testnet.tableland.network"`
ExternalURIPrefix string `default:"https://testnets.tableland.network"`
MetadataRendererURI string `default:""`
AnimationRendererURI string `default:""`
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/v1/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func TestGetTableByID(t *testing.T) {

table := calls.getTableByID(id)
require.NotEmpty(t, fullName, table.Name)
require.Equal(t, "https://testnet.tableland.network/chain/1337/tables/1", table.ExternalUrl)
require.Equal(t, "https://testnets.tableland.network/chain/1337/tables/1", table.ExternalUrl)
require.Equal(t, "https://render.tableland.xyz/anim/?chain=1337&id=1", table.AnimationUrl)
require.Equal(t, "https://render.tableland.xyz/1337/1", table.Image)

Expand Down
2 changes: 1 addition & 1 deletion tests/fullstack/fullstack.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func CreateFullStack(t *testing.T, deps Deps) FullStack {
if systemService == nil {
systemService, err = systemimpl.NewSystemSQLStoreService(
stores,
"https://testnet.tableland.network",
"https://testnets.tableland.network",
"https://render.tableland.xyz",
"https://render.tableland.xyz/anim",
)
Expand Down

0 comments on commit e7dd50a

Please sign in to comment.