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 {
91
91
assertEq (eTST.balanceOf (depositor), 102e18 );
92
92
}
93
93
94
- function test_FactoryGovernor_unathorizedCantTriggePause () external {
94
+ function test_FactoryGovernor_unauthorizedCantTriggePause () external {
95
95
vm.prank (admin);
96
96
vm.expectRevert ();
97
97
factoryGovernor.pause (address (factory));
@@ -132,7 +132,7 @@ contract FactoryGovernorTests is EVaultTestBase {
132
132
assertEq (eTST.balanceOf (depositor), 101e18 );
133
133
}
134
134
135
- function test_FactoryGovernor_unathorizedCantTriggeUnpause () external {
135
+ function test_FactoryGovernor_unauthorizedCantTriggeUnpause () external {
136
136
vm.prank (admin);
137
137
vm.expectRevert ();
138
138
factoryGovernor.unpause (address (factory));
You can’t perform that action at this time.
0 commit comments