You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/02/13 02:34:52 UTC

[groovy] branch GROOVY_2_5_X updated: minor refactoring

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_2_5_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_2_5_X by this push:
     new 6cf172b  minor refactoring
6cf172b is described below

commit 6cf172b6bbd6af0dffb8f24e0936603aabe0ab5b
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Feb 13 12:34:33 2020 +1000

    minor refactoring
---
 src/test/org/codehaus/groovy/runtime/StringGroovyMethodsTest.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/test/org/codehaus/groovy/runtime/StringGroovyMethodsTest.java b/src/test/org/codehaus/groovy/runtime/StringGroovyMethodsTest.java
index 3b5d154..6f4a9eb 100644
--- a/src/test/org/codehaus/groovy/runtime/StringGroovyMethodsTest.java
+++ b/src/test/org/codehaus/groovy/runtime/StringGroovyMethodsTest.java
@@ -197,7 +197,6 @@ public class StringGroovyMethodsTest extends GroovyTestCase {
         assertEquals(expectedResult, result);
     }
 
-    @Test
     public void testisAtLeast() {
         assertTrue(StringGroovyMethods.isAtLeast("2.1", "2.1"));
         assertTrue(StringGroovyMethods.isAtLeast("2.1", "2.0"));