Skip to content

Commit

Permalink
Fix security rules for API tests
Browse files Browse the repository at this point in the history
  • Loading branch information
culka committed Nov 21, 2023
1 parent 2c47985 commit e9c53ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import org.springframework.test.web.servlet.result.MockMvcResultMatchers
import java.util.UUID

@ExtendWith(MockKExtension::class)
@AutoConfigureMockMvc
@AutoConfigureMockMvc(addFilters = false)
@SpringBootTest
@ActiveProfiles("test")
class TimetablesCombineApiTest(@Autowired val mockMvc: MockMvc) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import java.util.UUID
private val LOGGER = KotlinLogging.logger {}

@ExtendWith(MockKExtension::class)
@AutoConfigureMockMvc
@AutoConfigureMockMvc(addFilters = false)
@SpringBootTest
@ActiveProfiles("test")
class TimetablesReplaceApiTest(@Autowired val mockMvc: MockMvc) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.time.LocalDate
import java.util.UUID

@ExtendWith(MockKExtension::class)
@AutoConfigureMockMvc
@AutoConfigureMockMvc(addFilters = false)
@SpringBootTest
@ActiveProfiles("test")
class TimetablesToReplaceApiTest(@Autowired val mockMvc: MockMvc) {
Expand Down

0 comments on commit e9c53ce

Please sign in to comment.