variable was never used

This commit is contained in:
Martin Diehl 2019-12-05 08:43:14 +01:00
parent 1bf4946e67
commit f885748a58
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class TestTable:
@pytest.mark.parametrize('fname',['datatype-mix.txt','whitespace-mix.txt'])
def test_read_strange(self,reference_dir,fname):
with open(os.path.join(reference_dir,fname)) as f:
new = Table.from_ASCII(f)
Table.from_ASCII(f)
def test_set(self,default):
default.set('F',np.zeros((5,3,3)),'set to zero')