diff --git a/openmc/volume.py b/openmc/volume.py index 65307a503e..7a9ef17371 100644 --- a/openmc/volume.py +++ b/openmc/volume.py @@ -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)