Skip to content

Commit

Permalink
fix sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
donlawatch committed Mar 31, 2024
1 parent 73d1990 commit a2442be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@ComponentScan.Filter(
type = FilterType.ASSIGNABLE_TYPE,
classes = JwtAuthFilter.class))
public class PromotionControllerTest {
class PromotionControllerTest {

@Autowired private MockMvc mockMvc;

Expand All @@ -44,7 +44,7 @@ public void setup() {

@Test
@DisplayName("should return all promotions")
public void shouldReturnAllPromotions() throws Exception {
void shouldReturnAllPromotions() throws Exception {
// Given

// When & Then
Expand All @@ -58,7 +58,7 @@ public void shouldReturnAllPromotions() throws Exception {

@Test
@DisplayName("should return promotion")
public void shouldReturnPromotion() throws Exception {
void shouldReturnPromotion() throws Exception {
// Given
String code = "PROMO-1";

Expand Down

0 comments on commit a2442be

Please sign in to comment.