Skip to content

Commit

Permalink
sql store test pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
ackleymi committed Nov 6, 2023
1 parent 0c33858 commit bca7f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/sql/sqlstore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (suite *SQLStoreTestSuite) SetupTest() {
// create tables
db, err := sql.Open(sqlDriver, sqlDsn)
require.Nil(suite.T(), err)
ddlFnames, err := filepath.Glob(fmt.Sprintf("_sql/%s/*.sql", sqlDriver))
ddlFnames, err := filepath.Glob(fmt.Sprintf("../../_sql/%s/*.sql", sqlDriver))
require.Nil(suite.T(), err)
for _, fname := range ddlFnames {
sqlBytes, err := os.ReadFile(fname)
Expand Down

0 comments on commit bca7f1c

Please sign in to comment.