Skip to content

Commit

Permalink
(core) fix two small typos in the core tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski committed Feb 13, 2024
1 parent 11d0457 commit 56a70aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysipfenn/tests/test_pysipfenn.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def testFromStructure_KS2022_dilute(self):
else:
raise ValueError('Did not detect any KS2022 models to run')

#@pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test depends on the ONNX network files")
@pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test depends on the ONNX network files")
def testFromPrototypes_KS2022_randomSolution(self):
"""Quick runtime test of the top level API for random solution structures. It does not test the accuracy, as
that is delegated elsewhere."""
Expand Down Expand Up @@ -307,7 +307,7 @@ def test_CalculatorPrint(self):
'''
printOut = str(self.c)
self.assertIn('pySIPFENN Calculator Object', printOut)
self.assertIn('Models are located in', printOut)
self.assertIn('Models are located', printOut)
self.assertIn('Loaded Networks', printOut)


Expand Down

0 comments on commit 56a70aa

Please sign in to comment.