This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-278
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-278 by this push:
new e174c6b WIP.
e174c6b is described below
commit e174c6b5c48deadf39833c73db8d2c862be13b31
Author: Sergey Kamov <[email protected]>
AuthorDate: Tue Mar 23 17:14:29 2021 +0300
WIP.
---
.../nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctions.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctions.scala
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctions.scala
index 92e42eb..904a491 100644
---
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctions.scala
+++
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctions.scala
@@ -56,7 +56,7 @@ private[functions] trait NCIdlFunctions {
override def toString: String =
token match {
case Some(t) ⇒ s"Predicate [body='$truth', token=${t2s(t)}]"
- case None ⇒ s"Predicate '$truth']"
+ case None ⇒ s"Predicate '$truth'"
}
}
@@ -147,7 +147,7 @@ private[functions] trait NCIdlFunctions {
}
res match {
- case b: java.lang.Boolean ⇒ require(b, s"Unexpected FALSE
result for: $f]")
+ case b: java.lang.Boolean ⇒ require(b, s"Unexpected FALSE
result for: $f")
case _ ⇒
require(
requirement = false,