Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate functional tests to Kotlin and Junit part 3 #1125

Merged
merged 13 commits into from
Jan 5, 2025
Prev Previous commit
Next Next commit
Rename transformerShouldNotHaveDeprecatedBehaviours to otherTransformers
  • Loading branch information
Goooler committed Jan 5, 2025
commit dd507736a1da90899974ef35552ae96181a5866c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class TransformersTest : BaseTransformerTest() {

@ParameterizedTest
@MethodSource("transformerConfigurations")
fun transformerShouldNotHaveDeprecatedBehaviours(pair: Pair<String, KClass<*>>) {
fun otherTransformers(pair: Pair<String, KClass<*>>) {
val (configuration, transformer) = pair
if (configuration.contains("test/some.file")) {
path("test/some.file").writeText("some content")
Expand Down
Loading