diff --git a/pycalphad/tests/test_database.py b/pycalphad/tests/test_database.py index dfdafc321..c22a6d477 100644 --- a/pycalphad/tests/test_database.py +++ b/pycalphad/tests/test_database.py @@ -860,4 +860,8 @@ def test_database_symmetry_options_are_generated(load_database): # The parameters should be filtered out when when writing such that a # read/write is a no-op read_dbf = Database.from_string(dbf.to_string(fmt="tdb"), fmt="tdb") - assert len(read_dbf._parameters) == 375 \ No newline at end of file + assert len(read_dbf._parameters) == 375 + +def test_dat_ambiguous_compound_names(): + "Compound names in DAT files are case sensitive (gh-425)" + Database.from_file(files(pycalphad.tests.databases).joinpath("issue425.dat"), fmt='dat')