Skip to content

Commit

Permalink
putting in asserts for builder test
Browse files Browse the repository at this point in the history
  • Loading branch information
2AUK committed Jun 13, 2023
1 parent 159abc2 commit 9b1e66f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyrism/tests/test_builders.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pyrism.rism_ctrl import *
import unittest
from numpy.testing import assert_allclose
from numpy.testing import assert_allclose, assert_almost_equal
import warnings
from pathlib import Path

Expand Down Expand Up @@ -30,4 +30,6 @@ def test_Data(self):
.num_lam_cycles(1)
.add_species(self.test_species)
.build()
)
)

assert_almost_equal(0.01, data.B)

0 comments on commit 9b1e66f

Please sign in to comment.