aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning-scope/src
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-09-16 13:19:31 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-09-16 16:53:01 +0200
commit97b0c4c1192fe5580a7957c844acc8092b56c604 (patch)
treebea3cdf9aaeb5da2864fcf87780d356661af8f63 /subprojects/store-reasoning-scope/src
parentbuild: fix Sonar quality gate issues (diff)
downloadrefinery-97b0c4c1192fe5580a7957c844acc8092b56c604.tar.gz
refinery-97b0c4c1192fe5580a7957c844acc8092b56c604.tar.zst
refinery-97b0c4c1192fe5580a7957c844acc8092b56c604.zip
chore: remove VIATRA branding
Rename VIATRA subprojects to Refinery Interpreter to avoid interfering with Eclipse Foundation trademarks. Uses refering to a specific (historical) version of VIATRA were kept to avoid ambiguity.
Diffstat (limited to 'subprojects/store-reasoning-scope/src')
-rw-r--r--subprojects/store-reasoning-scope/src/test/java/tools/refinery/store/reasoning/scope/MultiObjectTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/store-reasoning-scope/src/test/java/tools/refinery/store/reasoning/scope/MultiObjectTest.java b/subprojects/store-reasoning-scope/src/test/java/tools/refinery/store/reasoning/scope/MultiObjectTest.java
index 0132b3f9..97b9fa5e 100644
--- a/subprojects/store-reasoning-scope/src/test/java/tools/refinery/store/reasoning/scope/MultiObjectTest.java
+++ b/subprojects/store-reasoning-scope/src/test/java/tools/refinery/store/reasoning/scope/MultiObjectTest.java
@@ -12,7 +12,7 @@ import tools.refinery.store.dse.propagation.PropagationResult;
12import tools.refinery.store.model.Interpretation; 12import tools.refinery.store.model.Interpretation;
13import tools.refinery.store.model.Model; 13import tools.refinery.store.model.Model;
14import tools.refinery.store.model.ModelStore; 14import tools.refinery.store.model.ModelStore;
15import tools.refinery.store.query.viatra.ViatraModelQueryAdapter; 15import tools.refinery.store.query.interpreter.QueryInterpreterAdapter;
16import tools.refinery.store.reasoning.ReasoningAdapter; 16import tools.refinery.store.reasoning.ReasoningAdapter;
17import tools.refinery.store.reasoning.ReasoningStoreAdapter; 17import tools.refinery.store.reasoning.ReasoningStoreAdapter;
18import tools.refinery.store.reasoning.representation.PartialRelation; 18import tools.refinery.store.reasoning.representation.PartialRelation;
@@ -40,7 +40,7 @@ class MultiObjectTest {
40 @BeforeEach 40 @BeforeEach
41 void beforeEach() { 41 void beforeEach() {
42 store = ModelStore.builder() 42 store = ModelStore.builder()
43 .with(ViatraModelQueryAdapter.builder()) 43 .with(QueryInterpreterAdapter.builder())
44 .with(PropagationAdapter.builder()) 44 .with(PropagationAdapter.builder())
45 .with(ReasoningAdapter.builder()) 45 .with(ReasoningAdapter.builder())
46 .with(new MultiObjectTranslator()) 46 .with(new MultiObjectTranslator())