1
0
mirror of https://github.com/google/nomulus synced 2026-04-29 04:17:15 +00:00

Fix TldTest (#2107)

Test data should be loaded from resources, not source tree.
This commit is contained in:
Weimin Yu
2023-08-16 11:31:21 -04:00
committed by GitHub
parent ee7c8fb018
commit 99840488a1
2 changed files with 7 additions and 5 deletions

View File

@@ -77,6 +77,10 @@ task extractSqlIntegrationTestSuite (type: Copy) {
}
into unpackedTestDir
includeEmptyDirs = false
if (nomulus_version == USE_LOCAL) {
dependsOn ':core:testUberJar'
}
}
// TODO(weiminyu): inherit from FilteringTest (defined in :core).