Skip to content

Commit

Permalink
test: Remove noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 3, 2023
1 parent 4dc005e commit 0857fdb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_table/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def test_join_require_match(self):
with self.assertRaises(ValueError):
self.left.join(self.right, 'one', 'five', require_match=True)

new_table = self.left.join(self.right, 'one', 'four', require_match=True) # noqa
self.left.join(self.right, 'one', 'four', require_match=True)

def test_join_columns_kwarg(self):
new_table = self.left.join(self.right, 'one', 'four', columns=['six'])
Expand Down
3 changes: 1 addition & 2 deletions tests/test_table/test_order_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,4 @@ def test_order_by_with_row_names(self):

def test_order_by_empty_table(self):
table = Table([], self.column_names)

new_table = table.order_by('three') # noqa
table.order_by('three')
2 changes: 1 addition & 1 deletion tests/test_table/test_print_bars.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_print_bars(self):

output = StringIO()
table.print_bars('three', 'one', output=output)
lines = output.getvalue().split('\n') # noqa
output.getvalue().split('\n')

def test_print_bars_width(self):
table = Table(self.rows, self.column_names, self.column_types)
Expand Down

0 comments on commit 0857fdb

Please sign in to comment.