Skip to content

Commit 465a6f4

Browse files
committed
[DO NOT MERGE] make jasmine-maven-plugin fail.
1 parent a4b1805 commit 465a6f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/javascript/CatalogUtilsSpec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe("CatalogUtils.expandNumbers()", function() {
1717
});
1818

1919
it("should return 'one-two' for 'one-two'", function() {
20-
expect(CatalogUtils.expandNumbers("one-two")).toEqual("one-two");
20+
expect(CatalogUtils.expandNumbers("one-two")).toEqual("one two");
2121
});
2222

2323
it("should return '1,2' for '1-2'", function() {
@@ -81,7 +81,7 @@ describe("CatalogUtils.expandNumbers()", function() {
8181
});
8282

8383
it("should return '1,2,3' for '1/3'", function() {
84-
expect(CatalogUtils.expandNumbers("1/3")).toEqual("1,2,3");
84+
expect(CatalogUtils.expandNumbers("1/3")).toEqual("1,2");
8585
});
8686

8787
it("should return '1,2,3,4,5,6' for '1/3, 4-6'", function() {

0 commit comments

Comments
 (0)