Skip to content

Commit 01508b3

Browse files
authored
test: fix the failure test case (#26)
1 parent 43466ed commit 01508b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Whenever rust code changes (your changes or via `git pull`):
102102

103103
```bash
104104
# make sure you activate the venv using "source venv/bin/activate" first
105-
maturin develop python -m pytest
105+
maturin develop; python -m pytest
106106
```
107107

108108
## Testing

datafusion_ray/tests/test_context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
from datafusion_ray import Context
2020

2121
def test():
22-
ctx = Context(1, False)
22+
ctx = Context(1)
2323
ctx.register_csv('tips', 'examples/tips.csv', True)
2424
ctx.plan("SELECT * FROM tips")

0 commit comments

Comments
 (0)