diff --git a/test/tools/javac/generics/diamond/7046778/DiamondAndInnerClassTest.java b/test/tools/javac/generics/diamond/7046778/DiamondAndInnerClassTest.java index 3aab739fd57c19603e4b0baaaf55e2fcb5797fd6..290d083aad7f28acbd6e359c1cd3f8a1ca45ba77 100644 --- a/test/tools/javac/generics/diamond/7046778/DiamondAndInnerClassTest.java +++ b/test/tools/javac/generics/diamond/7046778/DiamondAndInnerClassTest.java @@ -284,7 +284,7 @@ public class DiamondAndInnerClassTest { try { ct.analyze(); } catch (Throwable ex) { - throw new AssertionError("Error thron when compiling the following code:\n" + source.getCharContent(true)); + throw new AssertionError("Error thrown when compiling the following code:\n" + source.getCharContent(true)); } check(); } diff --git a/test/tools/javac/generics/inference/7086601/T7086601b.java b/test/tools/javac/generics/inference/7086601/T7086601b.java index 0eceb7fe6a5eebc7f95e15e0ac81898bf925f077..64a3c81e740eddefa179dcd8c64ef3fc4d1a5bb5 100644 --- a/test/tools/javac/generics/inference/7086601/T7086601b.java +++ b/test/tools/javac/generics/inference/7086601/T7086601b.java @@ -146,7 +146,7 @@ public class T7086601b { try { ct.analyze(); } catch (Throwable ex) { - throw new AssertionError("Error thron when compiling the following code:\n" + source.getCharContent(true)); + throw new AssertionError("Error thrown when compiling the following code:\n" + source.getCharContent(true)); } check(); } diff --git a/test/tools/javac/generics/rawOverride/7062745/GenericOverrideTest.java b/test/tools/javac/generics/rawOverride/7062745/GenericOverrideTest.java index ae1a1cd583472fd9fc3e5c9d79613921b8e09590..de34d4d76d40fa9d8b54bee9ee7d5d5559093514 100644 --- a/test/tools/javac/generics/rawOverride/7062745/GenericOverrideTest.java +++ b/test/tools/javac/generics/rawOverride/7062745/GenericOverrideTest.java @@ -210,7 +210,7 @@ public class GenericOverrideTest { try { ct.analyze(); } catch (Throwable ex) { - throw new AssertionError("Error thron when compiling the following code:\n" + source.getCharContent(true)); + throw new AssertionError("Error thrown when compiling the following code:\n" + source.getCharContent(true)); } check(); } diff --git a/test/tools/javac/lambda/LambdaParserTest.java b/test/tools/javac/lambda/LambdaParserTest.java index b686013aa5b05af06afd5df1f73fc16d72759659..c728f849b5e8a54c31f8dcdf83d4434fc4a36e46 100644 --- a/test/tools/javac/lambda/LambdaParserTest.java +++ b/test/tools/javac/lambda/LambdaParserTest.java @@ -238,7 +238,7 @@ public class LambdaParserTest { try { ct.parse(); } catch (Throwable ex) { - throw new AssertionError("Error thron when parsing the following source:\n" + source.getCharContent(true)); + throw new AssertionError("Error thrown when parsing the following source:\n" + source.getCharContent(true)); } check(); }