Skip to content

Commit

Permalink
test: update veBAL tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-waite committed Oct 12, 2022
1 parent 12e8bb4 commit c4e0561
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/integration/tests/tribeRedeemer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ describe('e2e-tribe-redeemer', function () {
expect(daiReceived).to.be.at.most('71000000000'); // <>>= 0.0000000710 DAI
});

it.only('dust redeemooor', async () => {
it('dust redeemooor', async () => {
const signer = await getImpersonatedSigner(addresses.core);
await forceEth(signer.address);
const amount = '100'; // 100 TRIBE Wei
Expand All @@ -177,7 +177,7 @@ describe('e2e-tribe-redeemer', function () {
expect(daiReceived).to.be.equal('7'); // 6 DAI Wei
});

it.only('last redeemooor', async () => {
it('last redeemooor', async () => {
const signer = await getImpersonatedSigner(addresses.core);
await forceEth(signer.address);
const redeemerSigner = await getImpersonatedSigner(contracts.tribeRedeemer.address);
Expand Down
2 changes: 1 addition & 1 deletion test/integration/tests/veBalHelper_setters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ describe('e2e-veBalHelper-setters', function () {

it('should be able setDelegate() to give snapshot voting power to another address', async () => {
// Can setDelegate() to give Snapshot voting power to someone else
expect(await contracts.veBalDelegatorPCVDeposit.delegate()).to.be.equal(contractAddresses.eswak);
expect(await contracts.veBalDelegatorPCVDeposit.delegate()).to.be.equal(contractAddresses.aaveCompaniesMultisig);
await vebalOtcHelper.connect(otcBuyerSigner).setDelegate(contractAddresses.feiDAOTimelock);
expect(await contracts.veBalDelegatorPCVDeposit.delegate()).to.be.equal(contractAddresses.feiDAOTimelock);
});
Expand Down

0 comments on commit c4e0561

Please sign in to comment.