Skip to content

Commit f5aeec0

Browse files
authored
Add/update links for the GitHub issues in /kanban/issues (#2786)
* remap kanban issue number to internal-issues number
1 parent 5f4a304 commit f5aeec0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ public void testInvalidLookupDomainField() throws IOException, CommandException
312312
domainDesignerPage.clickFinish();
313313
}
314314

315-
@Test // GitHub Issue 788
315+
@Test // GitHub Issue #657
316316
public void testInvalidSampleFieldFromDelete() throws Exception
317317
{
318318
String listName = TestDataGenerator.randomDomainName("Sample Lookups List", DomainUtils.DomainKind.IntList);
@@ -349,7 +349,7 @@ public void testInvalidSampleFieldFromDelete() throws Exception
349349
validateListSampleLookupField(editListDefinitionPage, st2SamplesField.getName(), sampleType2 + " Error: Invalid sample type", "<Invalid sample type: " + sampleType2 + ">");
350350
}
351351

352-
@Test // GitHub Issue 788
352+
@Test // GitHub Issue #657
353353
public void testInvalidSampleFieldFromJSON() throws Exception
354354
{
355355
File jsonFile = TestFileUtils.getSampleData("lists/BadSampleFieldLookup.fields.json");

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void testProvisionedDomainFieldChanges() throws IOException, CommandExcep
6868
FieldInfo integerField = FieldInfo.random("Test/Integer", FieldDefinition.ColumnType.Integer, DomainUtils.DomainKind.IntList);
6969
FieldInfo decimalField = FieldInfo.random("Test/Decimal", FieldDefinition.ColumnType.Decimal, DomainUtils.DomainKind.IntList);
7070
FieldInfo dateField = FieldInfo.random("Test/Date", FieldDefinition.ColumnType.DateAndTime, DomainUtils.DomainKind.IntList);
71-
FieldInfo booleanField = FieldInfo.random("Test'/\"Boolean", FieldDefinition.ColumnType.Boolean, DomainUtils.DomainKind.IntList); // GH Issue #755
71+
FieldInfo booleanField = FieldInfo.random("Test'/\"Boolean", FieldDefinition.ColumnType.Boolean, DomainUtils.DomainKind.IntList); // GitHub Issue #647
7272
TestDataGenerator dgen = new TestDataGenerator("lists", listName, getProjectName())
7373
.withColumns(List.of(
7474
stringField.getFieldDefinition(),
@@ -117,7 +117,7 @@ public void testProvisionedDomainFieldChanges() throws IOException, CommandExcep
117117
domainFormPanel.getField(integerField.getName()).setType(FieldDefinition.ColumnType.String, true);
118118
domainFormPanel.getField(decimalField.getName()).setType(FieldDefinition.ColumnType.String, true);
119119
domainFormPanel.getField(dateField.getName()).setType(FieldDefinition.ColumnType.String, true);
120-
domainFormPanel.getField(booleanField.getName()).setType(FieldDefinition.ColumnType.String, true); // GH Issue #755
120+
domainFormPanel.getField(booleanField.getName()).setType(FieldDefinition.ColumnType.String, true); // GitHub Issue #647
121121
domainDesignerPage.clickFinish();
122122

123123
clickAndWait(Locator.linkWithText(listName));

0 commit comments

Comments
 (0)