We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fluidics["reservoir"]
1 parent e47d6fe commit a6fa153Copy full SHA for a6fa153
tests/test_core.py
@@ -683,5 +683,8 @@ def test_issue_38(self):
683
def test_fluidics_source(self):
684
fp = dir_testfiles / "BLPro" / "18-FZJ-Test2--2018-02-07-10-01-11.csv"
685
bldata = bletl.parse(fp)
686
- assert isinstance(bldata.fluidics["reservoir"][0], bletl.FluidicsSource)
+ correct_type = numpy.array(
687
+ [isinstance(r, bletl.FluidicsSource) for r in bldata.fluidics["reservoir"]]
688
+ )
689
+ assert all(correct_type), f"{sum(correct_type)/len(correct_type)} % correct"
690
pass
0 commit comments