diff options
author | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-05-24 16:23:39 +0200 |
---|---|---|
committer | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-05-24 16:23:39 +0200 |
commit | 5f0f66db0222e3db9ce720bfbaa04155a71c15d9 (patch) | |
tree | 71304dee345d8383c90553d1048d93e37010607a /it/it-tests | |
parent | 3e6eefb171d2b06c7f1e5efc8d8d559195df974e (diff) | |
parent | c110e6ee38343b43fd43d6dba0ef92dee61cf7ea (diff) | |
download | sonarqube-5f0f66db0222e3db9ce720bfbaa04155a71c15d9.tar.gz sonarqube-5f0f66db0222e3db9ce720bfbaa04155a71c15d9.zip |
Automatic merge from branch-6.4
* origin/branch-6.4:
SONAR-8913 Use "analysisDate" instead of "snapshotDate" in component overview
SONAR-8913 Replace "snapshotDate" by "analysisDate" in api/navigation/component
Fix JDK link download in travis build
SONAR-9301 Support HTTP redirect on scanner side
Fix localization in projects page facets
Diffstat (limited to 'it/it-tests')
-rw-r--r-- | it/it-tests/src/test/java/util/ItUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/it/it-tests/src/test/java/util/ItUtils.java b/it/it-tests/src/test/java/util/ItUtils.java index 5601563bdfd..367e3a724c8 100644 --- a/it/it-tests/src/test/java/util/ItUtils.java +++ b/it/it-tests/src/test/java/util/ItUtils.java @@ -380,14 +380,14 @@ public class ItUtils { public static class ComponentNavigation { private String version; - private String snapshotDate; + private String analysisDate; public String getVersion() { return version; } public Date getDate() { - return toDatetime(snapshotDate); + return toDatetime(analysisDate); } public static ComponentNavigation parse(String json) { |