File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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));
You can’t perform that action at this time.
0 commit comments