Skip to content

Commit

Permalink
rename some test vars; bump version -> 0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed Oct 28, 2020
1 parent 6829f38 commit 087878b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions flowio/tests/flowdata_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ def test_write_fcs(self):
os.unlink(file_name)

def test_write_fcs_preserves_channels(self):
readdata = FlowData('examples/fcs_files/100715.fcs')
expected = readdata.channels
orig_fd = FlowData('examples/fcs_files/100715.fcs')
expected = orig_fd.channels

with tempfile.NamedTemporaryFile() as tmpfile:
readdata.write_fcs(tmpfile.name)
outdata = FlowData(tmpfile.name)
actually = outdata.channels
orig_fd.write_fcs(tmpfile.name)
out_data = FlowData(tmpfile.name)
actually = out_data.channels

self.assertDictEqual(expected, actually)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='FlowIO',
version='0.9.7',
version='0.9.8',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
Expand Down

0 comments on commit 087878b

Please sign in to comment.