Skip to content

Commit

Permalink
Fixed unregister test
Browse files Browse the repository at this point in the history
  • Loading branch information
fulminazzo committed Apr 8, 2024
1 parent 450072d commit 94d95d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import static org.junit.jupiter.api.Assertions.*;

class RecipeItemImplTest {
class RecipeItemTest {

@Test
void recipeItemRegisterShouldBeUnimplemented() {
Expand All @@ -14,6 +14,6 @@ void recipeItemRegisterShouldBeUnimplemented() {

@Test
void recipeItemUnregisterShouldBeUnimplemented() {
assertThrowsExactly(NotImplemented.class, () -> Item.newRecipeItem().registerRecipes());
assertThrowsExactly(NotImplemented.class, () -> Item.newRecipeItem().unregisterRecipes());
}
}

0 comments on commit 94d95d1

Please sign in to comment.