Update java-collections-maps-2/src/test/java/com/baeldung/map/ProductUnitTest.java

Co-Authored-By: KevinGilmore <kpg102@gmail.com>
This commit is contained in:
Maiklins 2019-09-28 22:51:16 +02:00 committed by GitHub
parent a1dcb5c5ea
commit a50e35565b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ class ProductUnitTest {
Product nextPurchase = productsByName.get("Car");
assertEquals(null, nextPurchase);
assertNull(nextPurchase);
}
@Test
@ -121,4 +121,4 @@ class ProductUnitTest {
assertNull(productsByName.get("E-Bike"));
}
}
}