File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,15 @@ def test_distanceprinter(monkeypatch):
99 example_file_dir = os .path .join (current_module_dir , "data" )
1010 # must be cif, stru, or xyz file
1111 strufile = os .path .join (example_file_dir , "Ni-9008476.cif" )
12- # atoms typically pull from list of elements in stru output of PDFFitStructure. 'all' is always first option
12+ # atoms typically pull from list of elements in output of PDFFitStructure.
13+ # 'all' is always first option
1314 atomi = "all"
1415 atomj = "all"
1516 # lb and ub are lower an upper bound of distance to list in angstroms
1617 lb = 1
1718 ub = 10
18- # 1 means keep duplicate atom pairs with same inter-atomic distance, 0 means not to
19+ # 1 means keep duplicate atom pairs with same inter-atomic distance
20+ # 0 means not to
1921 comp = "1"
2022 monkeypatch .setattr (
2123 "sys.argv" ,
@@ -44,7 +46,7 @@ def test_distanceprinter(monkeypatch):
4446 rv1 = "" .join (rv1 )
4547 teststr = rv1
4648
47- # Remove structure file path when comparing as it may differ between machines
49+ # Remove stru file path when comparing as it may differ between machines
4850 resultstr = resultstr .split ("\n " , 2 )[2 ]
4951 teststr = teststr .split ("\n " , 2 )[2 ]
5052 assert resultstr == teststr
You can’t perform that action at this time.
0 commit comments