You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/integration-test/java/com/jaspersoft/jasperserver/jaxrs/client/apiadapters/bundles/BundlesServiceIT.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ public void should_return_all_bundles_for_default_locale() {
34
34
finalJSONObjectbundles = session
35
35
.bundlesService()
36
36
.forLocale(null)
37
-
.bundles()
37
+
.bundle()
38
38
.getEntity();
39
39
40
40
// Then
@@ -49,7 +49,7 @@ public void should_return_all_bundles_for_specified_locale() {
49
49
finalJSONObjectbundles = session
50
50
.bundlesService()
51
51
.forLocale("de")
52
-
.bundles()
52
+
.bundle()
53
53
.getEntity();
54
54
55
55
// Then
@@ -64,7 +64,7 @@ public void should_return__bundle_by_name_for_specified_locale() {
64
64
finalJSONObjectbundle = session
65
65
.bundlesService()
66
66
.forLocale("de")
67
-
.bundles("jasperserver_messages")
67
+
.bundle("jasperserver_messages")
68
68
.getEntity();
69
69
70
70
// Then
@@ -79,7 +79,7 @@ public void should_return__bundle_by_name_for_default_locale() {
0 commit comments