From b3dde9ad3e9a2ac758c9dbb71dd1e550cb11038c Mon Sep 17 00:00:00 2001 From: tastybento Date: Mon, 25 Nov 2019 20:18:49 -0800 Subject: [PATCH] Fixes blueprint clipboard manager test. --- .../bentobox/managers/BlueprintClipboardManagerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/world/bentobox/bentobox/managers/BlueprintClipboardManagerTest.java b/src/test/java/world/bentobox/bentobox/managers/BlueprintClipboardManagerTest.java index d2b540394..b6593031c 100644 --- a/src/test/java/world/bentobox/bentobox/managers/BlueprintClipboardManagerTest.java +++ b/src/test/java/world/bentobox/bentobox/managers/BlueprintClipboardManagerTest.java @@ -250,7 +250,7 @@ public class BlueprintClipboardManagerTest { zip(configFile); BlueprintClipboardManager bcm = new BlueprintClipboardManager(plugin, blueprintFolder); Blueprint bp = bcm.loadBlueprint(BLUEPRINT); - verify(plugin).logWarning("Blueprint blueprint had no bedrock block in it so one was added automatically in the center. You should check it."); + verify(plugin).logWarning("Blueprint blueprint.blu had no bedrock block in it so one was added automatically in the center. You should check it."); // Verify bedrock was placed in the center of the blueprint assertEquals(5, bp.getBedrock().getBlockX()); assertEquals(5, bp.getBedrock().getBlockY());