From 80f14a36db064068728fca36fc3e514c27099b84 Mon Sep 17 00:00:00 2001
From: Federico Felici <federico.felici@epfl.ch>
Date: Thu, 30 Sep 2021 14:40:00 +0200
Subject: [PATCH] Remove path adding which should now be done implicitly

---
 matlab/tests/setup_gdatpaths.m   | 9 ---------
 matlab/tests/test_requestnames.m | 2 +-
 2 files changed, 1 insertion(+), 10 deletions(-)
 delete mode 100644 matlab/tests/setup_gdatpaths.m

diff --git a/matlab/tests/setup_gdatpaths.m b/matlab/tests/setup_gdatpaths.m
deleted file mode 100644
index 67baae30..00000000
--- a/matlab/tests/setup_gdatpaths.m
+++ /dev/null
@@ -1,9 +0,0 @@
-classdef setup_gdatpaths < matlab.unittest.fixtures.Fixture
-  methods
-    function setup(fixture)
-      p = path; % get current matlab path (pre-testing)
-      fixture.addTeardown(@path,p); % teardown function to restore path
-      gdatpaths; % script to set up paths
-    end
-  end
-end
\ No newline at end of file
diff --git a/matlab/tests/test_requestnames.m b/matlab/tests/test_requestnames.m
index 60fd8ace..1839318c 100644
--- a/matlab/tests/test_requestnames.m
+++ b/matlab/tests/test_requestnames.m
@@ -1,5 +1,5 @@
 classdef (SharedTestFixtures={...
-    check_mds,setup_gdatpaths}) ...
+    check_mds}) ...
     test_requestnames < matlab.unittest.TestCase
 
   properties (Abstract)
-- 
GitLab