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-codec.git
The following commit(s) were added to refs/heads/master by this push:
new 448bd190 Sort members
448bd190 is described below
commit 448bd190566690a0cebce6680ef86b7c2670a556
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Apr 18 15:22:36 2024 -0400
Sort members
---
.../java/org/apache/commons/codec/binary/Base64Test.java | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/test/java/org/apache/commons/codec/binary/Base64Test.java
b/src/test/java/org/apache/commons/codec/binary/Base64Test.java
index 0c1cbb92..e96e9fa7 100644
--- a/src/test/java/org/apache/commons/codec/binary/Base64Test.java
+++ b/src/test/java/org/apache/commons/codec/binary/Base64Test.java
@@ -305,6 +305,14 @@ public class Base64Test {
// TODO Assert??
}
+ /**
+ * Tests <a
href="https://issues.apache.org/jira/browse/CODEC-263">CODEC-263</a>.
+ */
+ public void testCodec263() {
+ Base64.decodeBase64("publishMessage");
+ assertTrue(Base64.isBase64("publishMessage"));
+ }
+
/**
* Test for CODEC-265: Encode a 1GiB file.
*
@@ -1403,14 +1411,6 @@ public class Base64Test {
}
- /**
- * Tests <a
href="https://issues.apache.org/jira/browse/CODEC-263">CODEC-263</a>.
- */
- public void testCodec263() {
- Base64.decodeBase64("publishMessage");
- assertTrue(Base64.isBase64("publishMessage"));
- }
-
/**
* Base64 encoding of UUID's is a common use-case, especially in URL-SAFE
* mode. This test case ends up being the "URL-SAFE" JUnit's.