@@ -29,7 +29,7 @@ def test_lammpslib_map(model_cache):
2929
3030 for map_type in [None , "yes" , "array" , "hash" ]:
3131 lammpslib_kwargs = dict (lmpcmds = [ "pair_style symmetrix/mace" ,
32- f"pair_coeff * * { model_cache [" mace-mp-0b3-medium-1-8.json" ]} " + " " .join (species )],
32+ f"pair_coeff * * { model_cache [' mace-mp-0b3-medium-1-8.json' ]} " + " " .join (species )],
3333 atom_types = {sp : sp_i + 1 for sp_i , sp in enumerate (species )},
3434 lammps_header = ['units metal' , 'atom_style atomic' , 'atom_modify sort 0 0' ])
3535 if map_type is None :
@@ -53,14 +53,14 @@ def test_lammpslib_default_header(model_cache):
5353
5454 # use default lammps_header, should do "atom_modify map array sort 0 0"
5555 lammpslib_kwargs = dict (lmpcmds = [ "pair_style symmetrix/mace" ,
56- f"pair_coeff * * { model_cache [" mace-mp-0b3-medium-1-8.json" ]} " + " " .join (species )],
56+ f"pair_coeff * * { model_cache [' mace-mp-0b3-medium-1-8.json' ]} " + " " .join (species )],
5757 atom_types = {sp : sp_i + 1 for sp_i , sp in enumerate (species )})
5858
5959 compare_lammpslib_symmetrix (calc_symmetrix , lammpslib_kwargs )
6060
6161 # confirm that without "atom_modify sort 0 0" it fails
6262 lammpslib_kwargs = dict (lmpcmds = [ "pair_style symmetrix/mace" ,
63- f"pair_coeff * * { model_cache [" mace-mp-0b3-medium-1-8.json" ]} " + " " .join (species )],
63+ f"pair_coeff * * { model_cache [' mace-mp-0b3-medium-1-8.json' ]} " + " " .join (species )],
6464 atom_types = {sp : sp_i + 1 for sp_i , sp in enumerate (species )},
6565 lammps_header = ['units metal' , 'atom_style atomic' , 'atom_modify map yes' ])
6666
0 commit comments