Skip to content

Commit 9261002

Browse files
committed
make integration tests fail
1 parent b7f3322 commit 9261002

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/ru/mystamps/web/tests/cases/WhenUserAddSeries.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public void catalogNumbersShouldBeStripedFromSpaces() {
243243
@Test(groups = "logic", dependsOnGroups = { "std", "valid", "invalid", "misc" })
244244
public void shouldCreateSeriesWithOnlyRequiredFieldsFilled() {
245245
String expectedCategoryName = validCategoryName;
246-
String expectedQuantity = "2";
246+
String expectedQuantity = "20";
247247
String expectedPageUrl = Url.INFO_SERIES_PAGE.replace("{id}", "\\d+");
248248
String expectedImageUrl = Url.SITE + Url.GET_IMAGE_PAGE.replace("{id}", "\\d+");
249249

src/test/java/ru/mystamps/web/tests/cases/WhenUserAtIndexPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void shouldExistLinkForAddingCategories() {
7575
public void shouldExistsLinkForListingCategories() {
7676
assertThat(page.linkWithLabelExists(tr("t_show_categories_list")))
7777
.overridingErrorMessage("should exists link to page for listing categories")
78-
.isTrue();
78+
.isFalse();
7979
}
8080

8181
@Test(groups = "misc")

0 commit comments

Comments
 (0)