diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-10 20:25:00 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-10 20:25:00 +0100 |
commit | f535f02d56515a571430f7ccb77dcd315e525cbd (patch) | |
tree | e27d5647f36915b9d26752c70b3e1f607b7789de /sonar-server | |
parent | f2db48bd6fa9a0e5eaccaf696bc0e2dcba46bfe6 (diff) | |
download | sonarqube-f535f02d56515a571430f7ccb77dcd315e525cbd.tar.gz sonarqube-f535f02d56515a571430f7ccb77dcd315e525cbd.zip |
Fix unit test
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/test/java/org/sonar/server/startup/JdbcDriverDeployerTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/test/java/org/sonar/server/startup/JdbcDriverDeployerTest.java b/sonar-server/src/test/java/org/sonar/server/startup/JdbcDriverDeployerTest.java index eeb5a76ef2e..f9d5b64c790 100644 --- a/sonar-server/src/test/java/org/sonar/server/startup/JdbcDriverDeployerTest.java +++ b/sonar-server/src/test/java/org/sonar/server/startup/JdbcDriverDeployerTest.java @@ -52,6 +52,6 @@ public class JdbcDriverDeployerTest { assertThat(deployedIndex).exists(); assertThat(deployedFile).exists(); assertThat(deployedFile).hasSize(initialDriver.length()); - assertThat(FileUtils.readFileToString(deployedIndex)).isEqualTo("my-driver.jar|02B97F7BC37B2B68FC847FCC3FC1C156"); + assertThat(FileUtils.readFileToString(deployedIndex)).isEqualTo("my-driver.jar|02b97f7bc37b2b68fc847fcc3fc1c156"); } } |