summaryrefslogtreecommitdiffstats
path: root/component
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-11-17 15:48:32 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-11-17 15:48:32 +0100
commit7cddf841ac8774ecb1d359cac7e1c65059314733 (patch)
tree7ea8a9a8a2f0c80f799acd722b7b495f5da45eaa /component
parenta2d325add6496dca8e7c396b722bf4e14bb65393 (diff)
Always read test report, and propagate correct status
Diffstat (limited to 'component')
-rw-r--r--component/src/main/java/com/yahoo/component/provider/ComponentRegistry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/component/src/main/java/com/yahoo/component/provider/ComponentRegistry.java b/component/src/main/java/com/yahoo/component/provider/ComponentRegistry.java
index ec6f21e4f53..1dddcbcc461 100644
--- a/component/src/main/java/com/yahoo/component/provider/ComponentRegistry.java
+++ b/component/src/main/java/com/yahoo/component/provider/ComponentRegistry.java
@@ -20,7 +20,7 @@ import java.util.Set;
* <p>
* This registry supports the <i>freeze</i> pattern - changes can be made
* to this registry until {@link #freeze} is called. Subsequent change attempts will cause an
- * exception. Freezing a registry after building makes it possible toi avoid locking and memory
+ * exception. Freezing a registry after building makes it possible to avoid locking and memory
* synchronization on lookups.
*
* @author bratseth