aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-06-04 16:47:59 +0200
committerJon Bratseth <bratseth@verizonmedia.com>2019-06-04 16:47:59 +0200
commit74e30bfa86aae81f35cacc3666d60b18e5f22948 (patch)
tree653ad725bb8e40e16ffff7c8a5fdc1010d44dcd9 /vespajlib/src/test/java/com
parente62578c8451cee6cec2b0a5349b88bb80380fb20 (diff)
Expect IllegalArgumentException and be consistent
Diffstat (limited to 'vespajlib/src/test/java/com')
-rw-r--r--vespajlib/src/test/java/com/yahoo/tensor/serialization/JsonFormatTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/test/java/com/yahoo/tensor/serialization/JsonFormatTestCase.java b/vespajlib/src/test/java/com/yahoo/tensor/serialization/JsonFormatTestCase.java
index 8c652f5aa27..b466307d3b9 100644
--- a/vespajlib/src/test/java/com/yahoo/tensor/serialization/JsonFormatTestCase.java
+++ b/vespajlib/src/test/java/com/yahoo/tensor/serialization/JsonFormatTestCase.java
@@ -64,7 +64,7 @@ public class JsonFormatTestCase {
fail("Excpected exception");
}
catch (IllegalArgumentException e) {
- assertEquals("cell address (2) is not within bounds of tensor(x[2])", e.getMessage());
+ assertEquals("cell address (2) is not within the bounds of tensor(x[2])", e.getMessage());
}
}