mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Check volume calculation ids using sets in load_results.
This commit is contained in:
parent
869d7205a3
commit
af6ab83af7
1 changed files with 1 additions and 1 deletions
|
|
@ -319,7 +319,7 @@ class VolumeCalculation:
|
|||
results = type(self).from_hdf5(filename)
|
||||
|
||||
# Make sure properties match
|
||||
assert self.ids == results.ids
|
||||
assert set(self.ids) == set(results.ids)
|
||||
assert np.all(self.lower_left == results.lower_left)
|
||||
assert np.all(self.upper_right == results.upper_right)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue