Skip to content

Commit

Permalink
fix: testYamlConversion
Browse files Browse the repository at this point in the history
  • Loading branch information
edkerk committed Dec 17, 2024
1 parent 6433f9a commit 23e5812
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code/test/testYamlConversion.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@
writeYAMLmodel(model,'testYamlConversion.yml');
importedHumanGEM = readYAMLmodel('testYamlConversion.yml', true);

if isfield(model,'date')
model = rmfield(model,'date');
end
if isfield(importedHumanGEM,'date')
importedHumanGEM = rmfield(importedHumanGEM,'date');
end

% remove intermediate Yaml file
delete testYamlConversion.yml;

Expand Down

0 comments on commit 23e5812

Please sign in to comment.