diff --git a/mothership/src/org/labkey/mothership/MothershipController.java b/mothership/src/org/labkey/mothership/MothershipController.java index 63cde942bb9..4a73310718b 100644 --- a/mothership/src/org/labkey/mothership/MothershipController.java +++ b/mothership/src/org/labkey/mothership/MothershipController.java @@ -1923,8 +1923,9 @@ public void testUpdateInstallationContainerScoping() throws Exception public void testUpdateStackTraceContainerScoping() throws Exception { User admin = getAdmin(); - Container folderA = createContainer("A"); - Container folderB = createContainer("B"); + MothershipModule module = ModuleLoader.getInstance().getModule(MothershipModule.class); + Container folderA = createContainer("A", module); + Container folderB = createContainer("B", module); // An exception stack trace that lives in folder B (StackTraceHash is derived from the stack trace text) ExceptionStackTrace st = new ExceptionStackTrace();