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-configuration.git

commit b7533aaf0b08be8b084e2415fd21823c9f41747f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Jul 1 09:46:14 2024 -0400

    Sort members
---
 .../spring/TestConfigurationPropertySource.java              | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java
 
b/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java
index 1d5bf157..bac6d7dc 100644
--- 
a/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java
+++ 
b/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java
@@ -119,13 +119,13 @@ public class TestConfigurationPropertySource {
     private String emptyPropertyValue;
 
     @Test
-    public void testListValueInjection() {
-        assertArrayEquals(TEST_LIST_VALUE, listValue);
+    public void testEmptyStringValueInjection() {
+        assertEquals("", emptyPropertyValue);
     }
 
     @Test
-    public void testSystemPropertyValueInjection() {
-        assertEquals(TEST_SYSTEM_VALUE, systemPropertyValue);
+    public void testListValueInjection() {
+        assertArrayEquals(TEST_LIST_VALUE, listValue);
     }
 
     @Test
@@ -135,7 +135,7 @@ public class TestConfigurationPropertySource {
     }
 
     @Test
-    public void testEmptyStringValueInjection() {
-        assertEquals("", emptyPropertyValue);
+    public void testSystemPropertyValueInjection() {
+        assertEquals(TEST_SYSTEM_VALUE, systemPropertyValue);
     }
 }

Reply via email to