minor refactorings

This commit is contained in:
Sven Kubiak
2015-12-10 11:22:15 +01:00
parent de59b39be5
commit fac3ee3737
5 changed files with 20 additions and 16 deletions

View File

@ -1,6 +1,7 @@
package de.svenkubiak.jpushover;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
@ -64,6 +65,6 @@ public class TestJPushover {
assertEquals(push.getUser(), USER);
push.html();
assertEquals(push.getHtml(), true);
assertTrue(push.isHtml());
}
}