Skip to content

Commit

Permalink
Merge 02671ce into cd72802
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed May 2, 2022
2 parents cd72802 + 02671ce commit 236e1cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.5</version>
<version>2.6.7</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>com.examples</groupId>
Expand Down
Expand Up @@ -70,7 +70,7 @@ public void test_HomePageWithEmployees_ShouldShowThemInATable() throws Exception
assertThat(page.getBody().getTextContent())
.doesNotContain("No employee");
HtmlTable table = page.getHtmlElementById("employee_table");
assertThat(removeWindowsCR(table.asText()))
assertThat(removeWindowsCR(table.asNormalizedText()))
.isEqualTo(
"Employees\n" +
"ID Name Salary\n" +
Expand Down

0 comments on commit 236e1cc

Please sign in to comment.