aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-10-01 05:46:22 +0200
committerJon Bratseth <bratseth@oath.com>2018-10-01 05:46:22 +0200
commit9c80048457caab3881f3319aadd0990f65c04937 (patch)
treed180b1a6a866b53e0c23657a31ebe836d641911f /config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java
parent8d80010a385f40d4bb852e6b11810692a67e90ed (diff)
Include argument type information in functions
Diffstat (limited to 'config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java b/config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java
index 9ed82b9eef5..d2d5ecbd5aa 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/ml/MlModelsTest.java
@@ -54,7 +54,7 @@ public class MlModelsTest {
assertEquals("test", config.rankprofile(2).name());
RankProfilesConfig.Rankprofile.Fef test = config.rankprofile(2).fef();
- // Compare string content in a denser for that config:
+ // Compare profile content in a denser format than config:
StringBuilder b = new StringBuilder();
for (RankProfilesConfig.Rankprofile.Fef.Property p : test.property())
b.append(p.name()).append(": ").append(p.value()).append("\n");