Skip to content

Commit f880728

Browse files
fix xport path
1 parent f429607 commit f880728

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

asv_bench/benchmarks/packers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,13 @@ def setup(self):
160160
testdir = os.path.join(os.path.dirname(__file__), '..', '..',
161161
'pandas', 'io', 'tests', 'sas')
162162
self.f = os.path.join(testdir, 'data', 'test1.sas7bdat')
163-
self.f2 = os.path.join(testdir, 'sas', 'data', 'paxraw_d_short.xpt')
163+
self.f2 = os.path.join(testdir, 'data', 'paxraw_d_short.xpt')
164164

165165
def time_read_sas7bdat(self):
166166
pd.read_sas(self.f, format='sas7bdat')
167167

168168
def time_read_xport(self):
169-
pd.read_sas(self.f, format='xport')
169+
pd.read_sas(self.f2, format='xport')
170170

171171

172172
class CSV(_Packers):

0 commit comments

Comments
 (0)