Skip to content

Commit bf60d23

Browse files
committed
Adding tests, creating updated information
1 parent 5efdb85 commit bf60d23

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pandas/io/tests/sas/test_sas.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
from pandas.io.sas.sasreader import read_sas
21
import pandas.util.testing as tm
3-
import pandas as pd
42

53
class TestSasBuff(tm.TestCase):
6-
74
def test_sas_buffer_format(self):
85
import StringIO
96
from pandas.io.sas.sasreader import read_sas
107
b = StringIO.StringIO("")
118
with self.assertRaises(TypeError):
12-
result=read_sas(b)
13-
9+
read_sas(b)

0 commit comments

Comments
 (0)