Skip to content

Commit

Permalink
test: fix the failure test case (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunisdown authored Oct 11, 2024
1 parent 43466ed commit 01508b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Whenever rust code changes (your changes or via `git pull`):

```bash
# make sure you activate the venv using "source venv/bin/activate" first
maturin develop python -m pytest
maturin develop; python -m pytest
```

## Testing
Expand Down
2 changes: 1 addition & 1 deletion datafusion_ray/tests/test_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
from datafusion_ray import Context

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

0 comments on commit 01508b3

Please sign in to comment.