Skip to content

Commit cc4a064

Browse files
committed
adjust test
1 parent a74be69 commit cc4a064

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

packages/ethereum-contracts/test/contracts/superfluid/ERC20.behavior.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -132,23 +132,6 @@ export function shouldBehaveLikeERC20(
132132
.to.emit(this.token, "Transfer")
133133
.withArgs(tokenOwner, to, amount);
134134
});
135-
136-
it("emits an approval event", async function () {
137-
await expect(
138-
this.token
139-
.connect(spenderSigner)
140-
.transferFrom(tokenOwner, to, amount)
141-
)
142-
.to.emit(this.token, "Approval")
143-
.withArgs(
144-
tokenOwner,
145-
spender,
146-
await this.token.allowance(
147-
tokenOwner,
148-
spender
149-
)
150-
);
151-
});
152135
});
153136

154137
describe("when the token owner does not have enough balance", function () {

0 commit comments

Comments
 (0)