diff options
author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-11-23 09:44:01 +0000 |
---|---|---|
committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-11-23 09:44:01 +0000 |
commit | 402e3ec13ca1a0a870dde530d1364a528079782d (patch) | |
tree | e841cb7719fee1bf5280ba0f3bc94df7784df325 /src/test | |
parent | 65a8bbeaa25cdf42dfe150305fb48248e1a4b7b9 (diff) | |
download | RSAComb-402e3ec13ca1a0a870dde530d1364a528079782d.tar.gz RSAComb-402e3ec13ca1a0a870dde530d1364a528079782d.zip |
Rename `boolean` as `bcq`
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/scala/uk/ac/ox/cs/rsacomb/sparql/ConjunctiveQuerySpec.scala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/scala/uk/ac/ox/cs/rsacomb/sparql/ConjunctiveQuerySpec.scala b/src/test/scala/uk/ac/ox/cs/rsacomb/sparql/ConjunctiveQuerySpec.scala index e683d36..07e7bfb 100644 --- a/src/test/scala/uk/ac/ox/cs/rsacomb/sparql/ConjunctiveQuerySpec.scala +++ b/src/test/scala/uk/ac/ox/cs/rsacomb/sparql/ConjunctiveQuerySpec.scala | |||
@@ -150,15 +150,15 @@ class ConjunctiveQuerySpec | |||
150 | } | 150 | } |
151 | 151 | ||
152 | "A query with proper SELECT defined" should "not be a BCQ" in { | 152 | "A query with proper SELECT defined" should "not be a BCQ" in { |
153 | ConjunctiveQuery(cq0).value should not be 'boolean | 153 | ConjunctiveQuery(cq0).value should not be 'bcq |
154 | } | 154 | } |
155 | 155 | ||
156 | "A query with a \"*\" SELECT" should "not be a BCQ" in { | 156 | "A query with a \"*\" SELECT" should "not be a BCQ" in { |
157 | ConjunctiveQuery(cq1).value should not be 'boolean | 157 | ConjunctiveQuery(cq1).value should not be 'bcq |
158 | } | 158 | } |
159 | 159 | ||
160 | "An ASK query" should "not be a BCQ" in { | 160 | "An ASK query" should "not be a BCQ" in { |
161 | ConjunctiveQuery(bcq0).value shouldBe 'boolean | 161 | ConjunctiveQuery(bcq0).value shouldBe 'bcq |
162 | } | 162 | } |
163 | 163 | ||
164 | "Queries" should "have distinct answer and bounded variables" in { | 164 | "Queries" should "have distinct answer and bounded variables" in { |