Skip to content
Snippets Groups Projects
Commit 4c0999c2 authored by felmer's avatar felmer
Browse files

LMS-1949 Evalutor: Typo fixed

SVN: 19577
parent d0dc7a0d
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ public final class Evaluator ...@@ -129,7 +129,7 @@ public final class Evaluator
PyObject pyObject = interpreter.get(functionName); PyObject pyObject = interpreter.get(functionName);
if (pyObject == null) if (pyObject == null)
{ {
throw new PyException(new PyString("Unkown function"), functionName); throw new PyException(new PyString("Unknown function"), functionName);
} }
if (pyObject instanceof PyFunction == false) if (pyObject instanceof PyFunction == false)
{ {
......
...@@ -247,7 +247,7 @@ public class EvaluatorTest extends AssertJUnit ...@@ -247,7 +247,7 @@ public class EvaluatorTest extends AssertJUnit
fail("EvaluatorException expected"); fail("EvaluatorException expected");
} catch (EvaluatorException ex) } catch (EvaluatorException ex)
{ {
assertEquals("Error evaluating 'func(world)': Unkown function: func", ex.getMessage()); assertEquals("Error evaluating 'func(world)': Unknown function: func", ex.getMessage());
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment