Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maxvonhippel committed Jul 17, 2017
1 parent a23b2cc commit 7bc8b70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions q2_types/per_sample_sequences/tests/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_fastq_manifest_format_validate_negative_extra_col(self):
with self.assertRaisesRegex(ValueError, 'FastqManifestFormat'):
format.validate()

def test_fastq_manifest_format_validate_negative_extra_col_opp_order(self):
def test_fastq_manifest_format_validate_negative_extra_col_order(self):
filepath = self.get_data_path('extra-opposite-MANIFEST')
format = FastqManifestFormat(filepath, mode='r')

Expand All @@ -94,7 +94,7 @@ def test_fastq_manifest_format_validate_negative_missing_col(self):
with self.assertRaisesRegex(ValueError, 'FastqManifestFormat'):
format.validate()

def test_fastq_manifest_format_validate_negative_missing_col_opp_order(self):
def test_fastq_manifest_format_validate_negative_missing_col_order(self):
filepath = self.get_data_path('lesser-opposite-MANIFEST')
format = FastqManifestFormat(filepath, mode='r')

Expand Down

0 comments on commit 7bc8b70

Please sign in to comment.