From 2f34d6b4fcd2768f10600c097a5d461e565899f1 Mon Sep 17 00:00:00 2001 From: Federico Felici <federico.felici@epfl.ch> Date: Wed, 25 Sep 2019 16:10:48 +0200 Subject: [PATCH] Bugfix for assume --- tests/test_expcodes.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_expcodes.m b/tests/test_expcodes.m index 4d7ae80..90ce349 100644 --- a/tests/test_expcodes.m +++ b/tests/test_expcodes.m @@ -45,8 +45,7 @@ classdef test_expcodes < matlab.unittest.TestCase function test_compilation(testCase) expcode_ignore_compile = 1006; % ignore for now, until fixed - testCase.assumeTrue(~any(testCase.expcode_obj.maincode ~= expcode_ignore_compile),... - 'Ignoring test for %s',testCase.expcode_obj.maincode); + testCase.assumeTrue(~any(testCase.expcode_obj.maincode ~= expcode_ignore_compile)) node_to_compile = 'SCD_rtccode_02_02'; load_system(node_to_compile); -- GitLab