Skip to content

Commit

Permalink
selenium upgrade and test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Kowalski committed Dec 23, 2015
1 parent 63f0672 commit dd05f72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val slf4jVersion = "1.7.12"
val logBackVersion = "1.1.3"
val scalaLoggingVersion = "3.1.0"
val slickVersion = "3.1.0"
val seleniumVersion = "2.46.0"
val seleniumVersion = "2.48.2"
val circeVersion = "0.1.1"

val slf4jApi = "org.slf4j" % "slf4j-api" % slf4jVersion
Expand Down Expand Up @@ -141,4 +141,4 @@ lazy val uiTests = (project in file("ui-tests"))
test in Test <<= (test in Test) dependsOn gruntTask("build")
) dependsOn backend

RenameProject.settings
RenameProject.settings
2 changes: 1 addition & 1 deletion ui-tests/src/test/scala/uitest/MainPageUiSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ class MainPageUiSpec extends BaseUiSpec {
mainPage.open()

// then
mainPage.getVersionString should be (s"Build $buildSha, $buildDate")
mainPage.getVersionString should be (s"Build ${buildSha.substring(0, 6)}, $buildDate")
}
}

0 comments on commit dd05f72

Please sign in to comment.