Skip to content

Commit

Permalink
fix cli conns test
Browse files Browse the repository at this point in the history
  • Loading branch information
flarco committed Aug 30, 2024
1 parent 988fb09 commit 0a3f82b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-sling-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
env:
LOCAL: '{type: local, url: file:///tmp}'
SQLITE: 'sqlite://./test.db'
LOCAL: LOCAL
SQLITE: sqlite:///tmp/test.db

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion core/dbio/connection/connection_discover.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (c *Connection) Test() (ok bool, err error) {
}
}

return
return true, nil
}

type DiscoverOptions struct {
Expand Down

0 comments on commit 0a3f82b

Please sign in to comment.