From 0d5a977efeecc14223af21abf8ecec82f2ae4586 Mon Sep 17 00:00:00 2001 From: Egon Willighagen Date: Sat, 10 Jun 2023 12:22:58 +0200 Subject: [PATCH] Fixed the test to match the upstream tags --- .../test/org/wikipathways/client/TestGetCurationTags.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.wikipathways.client/test/org/wikipathways/client/TestGetCurationTags.java b/org.wikipathways.client/test/org/wikipathways/client/TestGetCurationTags.java index de57e08..4f2e5a1 100644 --- a/org.wikipathways.client/test/org/wikipathways/client/TestGetCurationTags.java +++ b/org.wikipathways.client/test/org/wikipathways/client/TestGetCurationTags.java @@ -44,7 +44,7 @@ public void test() throws RemoteException { // has tutorial pathway tag? boolean tutorial = false; for(WSCurationTag tag : tags) { - if(tag.getDisplayName().equals("Tutorial pathway")) { + if(tag.getDisplayName().equals("Test pathway")) { tutorial = true; } }