feat: Add option to filter patches to be listed by package name

This commit is contained in:
oSumAtrIX
2023-09-22 02:35:43 +02:00
parent 77d91735ff
commit 50c0f98ce5
2 changed files with 13 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ internal object PatchUtilsTest {
@Test
fun `return null because no patch is compatible with the supplied package name`() {
val patches = setOf(newPatch("other.package", "a"))
val patches = setOf(newPatch("some.package", "a"))
assertEqualsVersion(null, patches, "other.package")
}