Skip to content

Commit

Permalink
Issue #5086 Fix checkstyle in test
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bartel <janb@webtide.com>
  • Loading branch information
janbartel committed Dec 1, 2020
1 parent 4304c78 commit 115a72d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.junit.jupiter.api.condition.DisabledOnOs;

import static org.hamcrest.MatcherAssert.assertThat;
Expand Down Expand Up @@ -127,16 +126,14 @@ public Event(String filename, Notification notification)
@Override
public boolean equals(Object obj)
{
return ((Event)obj)._filename.equals(_filename) && ((Event)obj)._notification == _notification;
return ((Event)obj)._filename.equals(_filename) && ((Event)obj)._notification == _notification;
}

@Override
public String toString()
{
return ("File: " + _filename + ":" + _notification);
}


}

@Test
Expand Down

0 comments on commit 115a72d

Please sign in to comment.