Skip to content

Commit

Permalink
e2e: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jan 22, 2024
1 parent bbc982e commit a479d6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/interchaintest/contract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (s *ContractTestSuite) SetupSuite(ctx context.Context, chainSpecs []*interc
func (s *ContractTestSuite) SetupContractTestSuite(ctx context.Context, encoding string) {
s.SetupSuite(ctx, chainSpecs)

codeId, err := s.ChainA.StoreContract(ctx, s.UserA.KeyName(), "../../artifacts/callback_contract.wasm")
codeId, err := s.ChainA.StoreContract(ctx, s.UserA.KeyName(), "../../artifacts/callback_counter.wasm")
s.Require().NoError(err)

s.CallbackContractAddress, err = s.ChainA.InstantiateContract(ctx, s.UserA.KeyName(), codeId, callbackcounter.InstantiateMsg, true)
Expand Down
2 changes: 1 addition & 1 deletion e2e/interchaintest/owner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type OwnerTestSuite struct {
func (s *OwnerTestSuite) SetupOwnerTestSuite(ctx context.Context) {
s.SetupSuite(ctx, chainSpecs)

codeId, err := s.ChainA.StoreContract(ctx, s.UserA.KeyName(), "../../artifacts/callback_contract.wasm")
codeId, err := s.ChainA.StoreContract(ctx, s.UserA.KeyName(), "../../artifacts/callback_counter.wasm")
s.Require().NoError(err)

s.CallbackContractAddress, err = s.ChainA.InstantiateContract(ctx, s.UserA.KeyName(), codeId, callbackcounter.InstantiateMsg, true)
Expand Down
2 changes: 1 addition & 1 deletion e2e/interchaintest/wasm_msg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (s *ContractTestSuite) SetupWasmTestSuite(ctx context.Context, encoding str
}
s.SetupSuite(ctx, wasmChainSpecs)

codeId, err := s.ChainA.StoreContract(ctx, s.UserA.KeyName(), "../../artifacts/callback_contract.wasm")
codeId, err := s.ChainA.StoreContract(ctx, s.UserA.KeyName(), "../../artifacts/callback_counter.wasm")
s.Require().NoError(err)

s.CallbackContractAddress, err = s.ChainA.InstantiateContract(ctx, s.UserA.KeyName(), codeId, callbackcounter.InstantiateMsg, true)
Expand Down

0 comments on commit a479d6e

Please sign in to comment.