diff --git a/matlab/run_gdat_tests.m b/matlab/run_gdat_tests.m
index 4d75670474c18aaab7b3111e0fcde460134fa17e..611ed527ba411442b2700e8b37fc5e13ca6cd320 100644
--- a/matlab/run_gdat_tests.m
+++ b/matlab/run_gdat_tests.m
@@ -18,8 +18,8 @@ import matlab.unittest.selectors.HasName;
 addpath(genpath(fullfile(fileparts(mfilename('fullpath')),'tests')));
 addpath(genpath(fullfile(fileparts(mfilename('fullpath')),'TCV_IMAS')));
 
-suite_all = [matlab.unittest.TestSuite.fromClass(?test_requestnames_TCV),...
-  matlab.unittest.TestSuite.fromClass(?test_requestnames_AUG),...
+suite_all = [matlab.unittest.TestSuite.fromClass(?test_requestnames_tcv),...
+  matlab.unittest.TestSuite.fromClass(?test_requestnames_aug),...
   matlab.unittest.TestSuite.fromClass(?test_tcv_get_ids)];
 
 switch test_case
@@ -32,8 +32,7 @@ switch test_case
     s = HasTag('imas');
     suite = suite_all.selectIf(s);
   case 'tcv'
-
-    s = HasName(ContainsSubstring('TCV'));
+    s = HasName(ContainsSubstring('tcv'));
     suite = suite_all.selectIf(s);
   case 'aug'
     s = HasName(ContainsSubstring('aug'));
diff --git a/matlab/tests/test_requestnames.m b/matlab/tests/test_requestnames.m
index 83daa1175c3b2818bce4896534a99286edc451b7..69e3831c361dd5c7a12158d07c28dcbf60465186 100644
--- a/matlab/tests/test_requestnames.m
+++ b/matlab/tests/test_requestnames.m
@@ -13,13 +13,13 @@ classdef (SharedTestFixtures={...
     requests_slow;
   end
   
-  methods(Test,TestTags = {'Fast'})
+  methods(Test,TestTags = {'fast'})
     function test_gdat_call_fast(testCase,shot,requests_fast)
       test_gdat_call(testCase,shot,requests_fast);
     end
   end
   
-  methods(Test,TestTags = {'Slow'})
+  methods(Test,TestTags = {'slow'})
     function test_gdat_call_slow(testCase,shot,requests_slow)
       test_gdat_call(testCase,shot,requests_slow);
     end