Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] [Announce] JGit / EGit Release 4.11.0.201803080745-r

Dear JGit devs,

the following test used to work with JGit 4.10 and earlier. After updating to version 4.11, the test fails:

  @Test
  public void testIsIgnored() throws IOException {
    IgnoreNode ignoreNode = new IgnoreNode();
    ignoreNode.parse( new ByteArrayInputStream( "bin/".getBytes( StandardCharsets.UTF_8 ) ) );

    MatchResult matchResult = ignoreNode.isIgnored( "bin/Foo.class", false );

    assertEquals( MatchResult.IGNORED, matchResult );
  }

Is this a regression or am I doing something wrong?

Kind regards,
Rüdiger


On 9. Mar 2018, at 18:43, Matthias Sohn <matthias.sohn@xxxxxxxxx> wrote:

_______________________________________________
jgit-dev mailing list
jgit-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jgit-dev


Back to the top