corrected a test

This commit is contained in:
Lucas Pleß 2012-03-06 17:56:02 +01:00
parent e428a12058
commit 06adbd5155
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class BuntiDMXDeviceTest {
public void testSetValuesFromOptionsWrong() throws Exception {
Map<String, Object> options = new HashMap<String, Object>();
options.put("reddddwrong", 123);
assertTrue(dut.setValuesFromOptions(options));
assertFalse(dut.setValuesFromOptions(options));
}
@Test