Skip to content
Snippets Groups Projects
Commit 42a01614 authored by René Schöne's avatar René Schöne
Browse files

Finalize test enhancements

parent 7090f1e5
No related branches found
No related tags found
1 merge request!31Resolve "Improvement of tests"
Pipeline #13737 passed
This commit is part of merge request !31. Comments created here will be created in the context of that merge request.
......@@ -266,3 +266,9 @@ publishing {
// --- Task order ---
generateAst.dependsOn relast
publish.dependsOn jar
// --- Misc ---
dependencyUpdates {
gradleReleaseChannel = 'current'
revision = 'release'
}
......@@ -729,3 +729,8 @@ protobuf {
artifact = 'com.google.protobuf:protoc:3.0.0'
}
}
dependencyUpdates {
gradleReleaseChannel = 'current'
revision = 'release'
}
......@@ -214,7 +214,7 @@ public class TestUtils {
if (actual == null) {
fail("No actual getter defined for " + name);
}
awaitMqtt().alias(name).until(actual, Predicate.isEqual(expected));
awaitMqtt().alias(name + " == " + expected).until(actual, Predicate.isEqual(expected));
}
}
static class ValuesToCompare<T> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment