Skip to content

Commit

Permalink
chore: fix deploy test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xApotheosis committed Sep 23, 2024
1 parent a3bc994 commit 578af88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Deployment.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import StakingRewardsModule, { OWNER, REWARDS_DISTRIBUTION, REWARDS_TOKEN, STAKING_TOKEN } from '../ignition/modules/StakingRewards';
import StakingRewardsModule, { OWNER, REWARDS_TOKEN, STAKING_TOKEN } from '../ignition/modules/StakingRewards';
import hre from 'hardhat';
import { expect } from 'chai';

Expand All @@ -10,7 +10,7 @@ describe('Deployment', function () {
const rewardsToken = await stakingRewards.read.rewardsToken();
const stakingToken = await stakingRewards.read.stakingToken();
expect(owner).to.equal(OWNER);
expect(rewardsDistribution).to.equal(REWARDS_DISTRIBUTION);
expect(rewardsDistribution).to.equal(OWNER);
expect(rewardsToken).to.equal(REWARDS_TOKEN);
expect(stakingToken).to.equal(STAKING_TOKEN);
});
Expand Down

0 comments on commit 578af88

Please sign in to comment.