Skip to content

Commit 98670a6

Browse files
authored
Update FactoryGovernor.t.sol
Signed-off-by: FT <[email protected]>
1 parent f929749 commit 98670a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Governor/FactoryGovernor.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ contract FactoryGovernorTests is EVaultTestBase {
9191
assertEq(eTST.balanceOf(depositor), 102e18);
9292
}
9393

94-
function test_FactoryGovernor_unathorizedCantTriggePause() external {
94+
function test_FactoryGovernor_unauthorizedCantTriggePause() external {
9595
vm.prank(admin);
9696
vm.expectRevert();
9797
factoryGovernor.pause(address(factory));
@@ -132,7 +132,7 @@ contract FactoryGovernorTests is EVaultTestBase {
132132
assertEq(eTST.balanceOf(depositor), 101e18);
133133
}
134134

135-
function test_FactoryGovernor_unathorizedCantTriggeUnpause() external {
135+
function test_FactoryGovernor_unauthorizedCantTriggeUnpause() external {
136136
vm.prank(admin);
137137
vm.expectRevert();
138138
factoryGovernor.unpause(address(factory));

0 commit comments

Comments
 (0)