Skip to content

Commit e21e912

Browse files
committed
Fix Mothership container scoping test
1 parent b5c04c5 commit e21e912

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

mothership/src/org/labkey/mothership/MothershipController.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1923,8 +1923,9 @@ public void testUpdateInstallationContainerScoping() throws Exception
19231923
public void testUpdateStackTraceContainerScoping() throws Exception
19241924
{
19251925
User admin = getAdmin();
1926-
Container folderA = createContainer("A");
1927-
Container folderB = createContainer("B");
1926+
MothershipModule module = ModuleLoader.getInstance().getModule(MothershipModule.class);
1927+
Container folderA = createContainer("A", module);
1928+
Container folderB = createContainer("B", module);
19281929

19291930
// An exception stack trace that lives in folder B (StackTraceHash is derived from the stack trace text)
19301931
ExceptionStackTrace st = new ExceptionStackTrace();

0 commit comments

Comments
 (0)