Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
elena-krismer committed Jul 3, 2023
1 parent f0780d2 commit 9cc14ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file added testfiles/fragpipe/metadata2.xlsx
Binary file not shown.
6 changes: 3 additions & 3 deletions tests/test_DataSet.py
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ def setUpClass(cls):
index_column="Protein",
sep="\t"
)
cls.cls_metadata_path = "testfiles/fragpipe/metadata.xlsx"
cls.cls_metadata_path = "testfiles/fragpipe/metadata2.xlsx"
cls.cls_obj = DataSet(
loader=cls.cls_loader,
metadata_path=cls.cls_metadata_path,
Expand All @@ -949,8 +949,8 @@ def setUp(self):
self.loader = copy.deepcopy(self.cls_loader)
self.metadata_path = copy.deepcopy(self.cls_metadata_path)
self.obj = copy.deepcopy(self.cls_obj)
self.matrix_dim = (8, 6)
self.matrix_dim_filtered = (8, 6)
self.matrix_dim = (8, 5)
self.matrix_dim_filtered = (8, 5)
self.comparison_column = "grouping1"

@classmethod
Expand Down

0 comments on commit 9cc14ae

Please sign in to comment.