Skip to content

Commit 8450148

Browse files
authored
Fix improperly defined lookup in SampleTypeNameExpressionTest (#2488)
1 parent ac599f2 commit 8450148

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/labkey/test/tests/SampleTypeNameExpressionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ public void testParentAliasExpression()
452452
public void testLookupNameExpression() throws Exception
453453
{
454454
String lookupList = "Colors";
455-
FieldDefinition.LookupInfo colorsLookup = new FieldDefinition.IntLookup("lists", lookupList, getProjectName());
455+
FieldDefinition.LookupInfo colorsLookup = new FieldDefinition.IntLookup(getProjectName(), "lists", lookupList);
456456
String nameExpSamples = "NameExpressionSamples";
457457

458458
// begin by creating a lookupList of colors, the sampleType will reference it

0 commit comments

Comments
 (0)