aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2019-09-16 09:39:21 +0200
committerJon Marius Venstad <venstad@gmail.com>2019-09-16 09:39:21 +0200
commit8b51c6adbdb5c5cc05b24150693a5fa1886e3692 (patch)
tree3618a26e37fe40c264a7ba20a017d4a2d1bbd07d /controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
parent90ff5174d9ef863d3e01c1cd58ae32a26d6aa37e (diff)
Make deployment job info messages INFO level
Diffstat (limited to 'controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java')
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
index 55873d5df16..20259acff90 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
@@ -278,7 +278,7 @@ public class InternalStepRunnerTest {
tester.runner().run();
assertTestLogEntries(id, Step.endTests,
new LogEntry(lastId + 1, Instant.ofEpochMilli(321), error, "Failure!"),
- new LogEntry(lastId + 2, tester.clock().instant(), debug, "Tests failed."));
+ new LogEntry(lastId + 2, tester.clock().instant(), info, "Tests failed."));
assertEquals(failed, tester.jobs().run(id).get().steps().get(Step.endTests));
}
@@ -330,7 +330,7 @@ public class InternalStepRunnerTest {
new LogEntry(lastId + 1, Instant.ofEpochMilli(123), info, "Ready!"),
new LogEntry(lastId + 2, Instant.ofEpochMilli(1234), info, "Steady!"),
new LogEntry(lastId + 3, Instant.ofEpochMilli(12345), info, "Success!"),
- new LogEntry(lastId + 4, tester.clock().instant(), debug, "Tests completed successfully."));
+ new LogEntry(lastId + 4, tester.clock().instant(), info, "Tests completed successfully."));
assertEquals(succeeded, tester.jobs().run(id).get().steps().get(Step.endTests));
}