Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Crawford <steecraw@amazon.com>
  • Loading branch information
stephen-crawford committed Aug 22, 2023
1 parent f9756f3 commit acb23d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.Mockito.mock;

public class RestPathMatchesTest {
public class RestPathMatchesTests {
Method restPathMatches;
SecurityRestFilter securityRestFilter;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
import static org.mockito.Mockito.when;

@RunWith(Parameterized.class)
public class SecurityFilterTest {
public class SecurityFilterTests {

private final Settings settings;
private final WildcardMatcher expected;

public SecurityFilterTest(Settings settings, WildcardMatcher expected) {
public SecurityFilterTests(Settings settings, WildcardMatcher expected) {
this.settings = settings;
this.expected = expected;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Currently tests that the whitelisting functionality works correctly.
* Uses the test/resources/restapi folder for setup.
*/
public class SecurityRestFilterTest extends AbstractRestApiUnitTest {
public class SecurityRestFilterTests extends AbstractRestApiUnitTest {

private RestHelper.HttpResponse response;

Expand Down

0 comments on commit acb23d2

Please sign in to comment.