Skip to content

Commit

Permalink
autotest: delete the redundant print in test_vasp.py (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
pxlxingliang authored Aug 3, 2022
1 parent a78f8a5 commit 34b8334
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/auto_test/test_vasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ def test_compuate(self):
def compare_dict(dict1,dict2):
self.assertEqual(dict1.keys(),dict2.keys())
for key in dict1:
print(key,type(dict1[key]),type(dict2[key]))
if key == 'stress':
self.assertTrue((np.array(dict1[key]['data']) == dict2[key]).all())
elif type(dict1[key]) is dict:
Expand Down

0 comments on commit 34b8334

Please sign in to comment.