You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: engine/flink/components/base-tests/src/test/scala/pl/touk/nussknacker/engine/flink/util/transformer/aggregate/TransformersTest.scala
+1-1
Original file line number
Diff line number
Diff line change
@@ -494,7 +494,7 @@ class TransformersTest extends AnyFunSuite with FlinkSpec with Matchers with Ins
494
494
valex= the[IllegalArgumentException] thrownBy {
495
495
runScenario(model, resolvedScenario)
496
496
}
497
-
ex should have message "Compilation errors: ExpressionParserCompilationError(Unresolved reference 'input',inputVarAccessTest,Some(ParameterName($expression)),#input,None)"
497
+
ex should have message "Compilation errors: ExpressionParserCompilationError(Unresolved reference 'input',inputVarAccessTest,Some($expression),#input,None)"
Copy file name to clipboardExpand all lines: engine/flink/executor/src/test/scala/pl/touk/nussknacker/engine/process/functional/CustomNodeProcessSpec.scala
+2-2
Original file line number
Diff line number
Diff line change
@@ -261,7 +261,7 @@ class CustomNodeProcessSpec extends AnyFunSuite with Matchers with ProcessTestHe
Copy file name to clipboardExpand all lines: engine/flink/schemed-kafka-components-utils/src/test/scala/pl/touk/nussknacker/engine/schemedkafka/KafkaAvroPayloadIntegrationSpec.scala
+2-2
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ class KafkaAvroPayloadIntegrationSpec extends KafkaAvroSpecMixin with BeforeAndA
Copy file name to clipboardExpand all lines: engine/flink/schemed-kafka-components-utils/src/test/scala/pl/touk/nussknacker/engine/schemedkafka/source/flink/DelayedUniversalKafkaSourceAvroPayloadIntegrationSpec.scala
+1-1
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,7 @@ class DelayedUniversalKafkaSourceAvroPayloadIntegrationSpec
"LowerThanRequiredParameter(This field value has to be a number greater than or equal to 0,Please fill field with proper number,ParameterName(delayInMillis),start)"
149
+
"LowerThanRequiredParameter(This field value has to be a number greater than or equal to 0,Please fill field with proper number,delayInMillis,start)"
Copy file name to clipboardExpand all lines: engine/flink/tests/src/test/scala/pl/touk/nussknacker/engine/flink/minicluster/scenariotesting/FlinkMiniClusterScenarioTestRunnerSpec.scala
+1-1
Original file line number
Diff line number
Diff line change
@@ -833,7 +833,7 @@ class FlinkMiniClusterScenarioTestRunnerSpec
Copy file name to clipboardExpand all lines: scenario-compiler/src/test/scala/pl/touk/nussknacker/engine/InterpreterSpec.scala
+2-2
Original file line number
Diff line number
Diff line change
@@ -965,7 +965,7 @@ class InterpreterSpec extends AnyFunSuite with Matchers {
965
965
966
966
intercept[IllegalArgumentException] {
967
967
interpretProcess(process, Transaction())
968
-
}.getMessage shouldBe "Compilation errors: EmptyMandatoryParameter(This field is mandatory and can not be empty,Please fill field for this parameter,ParameterName(expression),customNode)"
968
+
}.getMessage shouldBe "Compilation errors: EmptyMandatoryParameter(This field is mandatory and can not be empty,Please fill field for this parameter,expression,customNode)"
969
969
}
970
970
971
971
test("not accept blank expression for not blank parameter") {
@@ -978,7 +978,7 @@ class InterpreterSpec extends AnyFunSuite with Matchers {
978
978
979
979
intercept[IllegalArgumentException] {
980
980
interpretProcess(process, Transaction())
981
-
}.getMessage shouldBe "Compilation errors: BlankParameter(This field value is required and can not be blank,Please fill field value for this parameter,ParameterName(expression),customNode)"
981
+
}.getMessage shouldBe "Compilation errors: BlankParameter(This field value is required and can not be blank,Please fill field value for this parameter,expression,customNode)"
0 commit comments