You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Robert Munteanu (JIRA)" <ji...@apache.org> on 2019/04/19 08:23:00 UTC

[jira] [Created] (SLING-8366) Releases of the form 'Apache Sling Foo RC' are not properly parsed

Robert Munteanu created SLING-8366:
--------------------------------------

             Summary: Releases of the form 'Apache Sling Foo RC' are not properly parsed
                 Key: SLING-8366
                 URL: https://issues.apache.org/jira/browse/SLING-8366
             Project: Sling
          Issue Type: Bug
          Components: Tooling
            Reporter: Robert Munteanu
             Fix For: CLI 1.0.0


The following unit test started failing after some recent refactorings

{code:java}
    @Test
    @Ignore("Broken after refactoring, needs separate issue")
    public void releaseWithRCSuffixOnly() {
        List<Release> releases = Release.fromString("Apache Sling Resource Resolver 1.6.12 RC");
        
        assertEquals(1, releases.size());
        assertEquals("Apache Sling Resource Resolver 1.6.12", releases.get(0).getFullName());
    }
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)