From 12c3a68ddac4f1c6be31a43fc82b39ac291dd727 Mon Sep 17 00:00:00 2001 From: joehni Date: Wed, 15 May 2024 21:30:46 +0200 Subject: [PATCH] Fix typo. --- .../thoughtworks/acceptance/SecurityVulnerabilityTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java b/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java index 46f6d15b8..5b4b6c149 100644 --- a/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java +++ b/xstream/src/test/com/thoughtworks/acceptance/SecurityVulnerabilityTest.java @@ -308,7 +308,7 @@ public void testExplicitlyUseJaxwsInputStreamToDeleteFile() throws IOException { } } - public void testCannotInjectManipulatedByteArryInputStream() { + public void testCannotInjectManipulatedByteArrayInputStream() { xstream.alias("bais", ByteArrayInputStream.class); final String xml = "" + "\n" @@ -326,7 +326,7 @@ public void testCannotInjectManipulatedByteArryInputStream() { } } - public void testExplicitlyUnmarshalEndlessByteArryInputStream() throws IOException { + public void testExplicitlyUnmarshalEndlessByteArrayInputStream() throws IOException { xstream.alias("bais", ByteArrayInputStream.class); xstream.allowTypes(ByteArrayInputStream.class);