Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
schae234 committed Sep 6, 2018
1 parent 6c26d43 commit 7b380d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ def RNAAccession2():

@pytest.fixture(scope='module')
def RNACohort(RNAAccession1,RNAAccession2):
delete('RNACohort','Cohort',force=True)
delete('Cohort','RNACohort',force=True)
x = Cohort('RNACohort')
x.add_accession(RNAAccession1)
x.add_accession(RNAAccession2)
return x

@pytest.fixture(scope='module')
def simpleCohort():
delete('TestCohort','Cohort',force=True)
delete('Cohort','TestCohort',force=True)
# Create the simple cohort
a = Accession('Sample1',files=['file1.txt','file2.txt'],type='WGS')
b = Accession('Sample2',files=['file1.txt','file2.txt'],type='WGS')
Expand Down

0 comments on commit 7b380d5

Please sign in to comment.