Fix broken test

This commit is contained in:
Daniel Kvist 2016-03-31 23:06:16 +02:00
parent 58ae7f3727
commit 0401779f58

View File

@ -24,7 +24,7 @@ public class LabelDebuggerTest {
public void testSetEnabledNullThrowsException() { public void testSetEnabledNullThrowsException() {
LabelDebugger ld = new LabelDebugger(); LabelDebugger ld = new LabelDebugger();
try { try {
ld.setEnabled(true); ld.setEnabled(null);
} catch (Exception e) { } catch (Exception e) {
// We want to end up here // We want to end up here
return; return;