diff options
author | Federico Igne <git@federicoigne.com> | 2021-10-03 22:08:44 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-10-03 22:08:44 +0100 |
commit | c45035e9e50d92e85b851724466a950fc1788a02 (patch) | |
tree | 93cc85fb6280207bd3ea1956f4c7d36e7b33feb3 | |
parent | b290ea110d7bbb3cee6af2fc25b7ce07308b32f4 (diff) | |
download | RSAComb-c45035e9e50d92e85b851724466a950fc1788a02.tar.gz RSAComb-c45035e9e50d92e85b851724466a950fc1788a02.zip |
Fix functional tests
-rw-r--r-- | src/test/scala/uk/ac/ox/cs/rsacomb/functional/Functional.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/uk/ac/ox/cs/rsacomb/functional/Functional.scala b/src/test/scala/uk/ac/ox/cs/rsacomb/functional/Functional.scala index 6882997..e4ea01b 100644 --- a/src/test/scala/uk/ac/ox/cs/rsacomb/functional/Functional.scala +++ b/src/test/scala/uk/ac/ox/cs/rsacomb/functional/Functional.scala | |||
@@ -35,7 +35,7 @@ class LUBM extends AnyFunSpec with Matchers { | |||
35 | 35 | ||
36 | queries foreach { query => | 36 | queries foreach { query => |
37 | it(s"Tested Query${query.id}") { | 37 | it(s"Tested Query${query.id}") { |
38 | val answers = rsa.ask(query).answers.map(_._2.mkString(" ")) | 38 | val answers = rsa.ask(query).answers.map(_._2.mkString("\t")) |
39 | val reference = results | 39 | val reference = results |
40 | .find(_("queryID").num == query.id) | 40 | .find(_("queryID").num == query.id) |
41 | .get("answers") | 41 | .get("answers") |