Skip to content

Commit

Permalink
fixed a unit test that failed as a result of the earlier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorf committed Nov 18, 2024
1 parent a486f06 commit d380a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/util/test_ontology_csv_writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def test_csv_writer_content_non_obsolete
classes = CSV.parse(get_csv_string, headers:true)
classes.select do |row|
if row[LinkedData::Utils::OntologyCSVWriter::PREF_LABEL] == preferred_label
assert_equal 'false', row[LinkedData::Utils::OntologyCSVWriter::OBSOLETE]
assert_equal 'false', row[LinkedData::Utils::OntologyCSVWriter::OBSOLETE].to_s.downcase
class_exists = true
end
end
Expand Down

0 comments on commit d380a88

Please sign in to comment.