diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index 2293d97..6caeb2f 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -77,7 +77,6 @@
-
diff --git a/pom.xml b/pom.xml
index 1e6b5d8..dbab89a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,6 +16,7 @@
+
@@ -57,6 +58,7 @@
+
org.apache.maven.plugins
maven-compiler-plugin
@@ -108,6 +110,8 @@
junit-jupiter-engine
${junit5.version}
+
+
org.junit.vintage
junit-vintage-engine
@@ -190,6 +194,7 @@
test
+
junit
junit
@@ -197,6 +202,7 @@
test
+
org.hamcrest
hamcrest-all
diff --git a/src/test/java/table/FunctionTableTest.kt b/src/test/java/table/FunctionTableTest.kt
index 5ef4c12..a2aa680 100644
--- a/src/test/java/table/FunctionTableTest.kt
+++ b/src/test/java/table/FunctionTableTest.kt
@@ -26,18 +26,15 @@ class FunctionTableTest {
@FunctionNames("GOOD")
class GoodFunction(name: String) : LispFunction() {
-
override fun call(argumentList: Cons): Nil = NIL
}
@FunctionNames("BAD")
class BadFunction : LispFunction() {
-
override fun call(argumentList: Cons): Nil = NIL
}
class UglyFunction : LispFunction() {
-
override fun call(argumentList: Cons): Nil = NIL
}