Skip to content

Commit

Permalink
chore: remove deprecated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
byte-bandit committed Jan 10, 2024
1 parent 8b39c69 commit 0894793
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions x/evm/keeper/attest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,38 +472,6 @@ var _ = g.Describe("attest router", func() {
})
})

// TODO: Fix
// g.When("message is TransferERC20Ownership", func() {
// g.BeforeEach(func() {
// consensusMsg.Action = &types.Message_TransferERC20Ownership{
// TransferERC20Ownership: &types.TransferERC20Ownership{
// SmartContractID: 1,
// NewCompassAddress: sdk.ValAddress("12345678901234567890"),
// },
// }
// })
//
// g.When("contract not actively deploying", func() {
// g.It("returns an error", func() {
// isGoodcase = false
// setupChainSupport()
// Expect(subject()).To(MatchError("trying to activate a smart contract that is not currently deploying"))
// })
// })
//
// g.When("transfer is done", func() {
// g.It("must remove the deployment from deployment store", func() {
// setupChainSupport()
// // TODO: Add proper testing of new way
// k.SetSmartContractDeploymentStatusByContractID(ctx, uint64(1), newChain.ChainReferenceID, types.SmartContractDeployment_WAITING_FOR_ERC20_OWNERSHIP_TRANSFER)
// k.updateSmartContractDeployment(ctx, uint64(1), newChain.ChainReferenceID, &types.SmartContractDeployment{})
// Expect(subject()).To(BeNil())
// v, _ := k.getSmartContractDeploymentByContractID(ctx, uint64(1), newChain.GetChainReferenceID())
// Expect(v).To(BeNil())
// })
// })
// })

g.JustAfterEach(func() {
if isGoodcase {
g.By("there is no error when processing evidence")
Expand Down

0 comments on commit 0894793

Please sign in to comment.