We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3269303 commit eb42a7bCopy full SHA for eb42a7b
1 file changed
src/test/java/io/securecodebox/persistence/defectdojo/service/UserProfileServiceTest.java
@@ -25,14 +25,14 @@
25
26
// This test is special because the defectdojo api does not return a list,
27
// but the generic code assumes every endpoint returns a list
28
-public class UserProfileServiceTest {
+class UserProfileServiceTest {
29
30
- Config config;
31
- UserProfileService underTest;
32
- MockRestServiceServer mockServer;
+ private Config config;
+ private UserProfileService underTest;
+ private MockRestServiceServer mockServer;
33
34
// This string does not contain every field of the api response as those are not implemented
35
- String apiResponse = """
+ private String apiResponse = """
36
{
37
"user": {
38
"id": 0,
0 commit comments