This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push: new 5c3dbf9d9 Fix randomly failing test 5c3dbf9d9 is described below commit 5c3dbf9d93659c3564ff517d397d8226085a2c98 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jul 18 18:27:06 2025 -0400 Fix randomly failing test --- src/test/java/org/apache/commons/io/build/URIOriginTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/io/build/URIOriginTest.java b/src/test/java/org/apache/commons/io/build/URIOriginTest.java index 591a6c4ce..303cfe111 100644 --- a/src/test/java/org/apache/commons/io/build/URIOriginTest.java +++ b/src/test/java/org/apache/commons/io/build/URIOriginTest.java @@ -48,8 +48,8 @@ protected URIOrigin newOriginRw() { @ParameterizedTest @ValueSource(strings = { - "http://example.com", - "https://example.com" + "http://apache.com", + "https://apache.com" }) void testGetInputStream(final String uri) throws Exception { final AbstractOrigin.URIOrigin origin = new AbstractOrigin.URIOrigin(new URI(uri));