Skip to content

Commit

Permalink
Fix ContractsExtensionsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
pdenert committed Aug 5, 2024
1 parent 78ac510 commit ba8bcf9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ fun dartTestGroup(
name: String,
entries: List<DartGroupEntry>,
): DartGroupEntry {
return DartGroupEntry(name, GroupEntryType.group, entries, false, [])
return DartGroupEntry(name, GroupEntryType.group, entries, false, listOf<String>())
}

fun dartTestCase(name: String): DartGroupEntry {
return DartGroupEntry(name, GroupEntryType.test, listOf(), false, [])
return DartGroupEntry(name, GroupEntryType.test, listOf(), false, listOf<String>())
}

class DartTestGroupExtensionsTest {
Expand Down

0 comments on commit ba8bcf9

Please sign in to comment.