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 4931d7a WIP.
4931d7a is described below
commit 4931d7abe2a970a83cde6171a7373b2c4d55a85f
Author: Sergey Kamov <[email protected]>
AuthorDate: Wed Mar 24 17:18:20 2021 +0300
WIP.
---
.../model/intent/idl/compiler/functions/NCIdlFunctionsStrings.scala | 2 --
1 file changed, 2 deletions(-)
diff --git
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStrings.scala
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStrings.scala
index 7386bce..78264c4 100644
---
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStrings.scala
+++
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/intent/idl/compiler/functions/NCIdlFunctionsStrings.scala
@@ -27,7 +27,6 @@ class NCIdlFunctionsStrings extends NCIdlFunctions {
def test(): Unit =
test(
"trim(' a b ') == 'a b'",
-
"strip(' a b ') == 'a b'",
"uppercase('aB') == 'AB'",
"lowercase('aB') == 'ab'",
@@ -71,7 +70,6 @@ class NCIdlFunctionsStrings extends NCIdlFunctions {
@Test
def testError(): Unit = {
-
expectNceError("split('1 A') == true")
expectNceError("split_trim('1 A') == true")
}