Skip to content

Commit 822e48d

Browse files
committed
no dash in database name
1 parent 57a2176 commit 822e48d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ language: node_js
22
node_js:
33
- 0.8
44
before_script:
5-
- psql -c 'create database node-postgres;' -U postgres
6-
- node script/create-test-tables.js pg://[email protected]:5432/node-postgres
5+
- psql -c 'create database postgres;' -U postgres
6+
- node script/create-test-tables.js pg://[email protected]:5432/postgres

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"generic-pool" : "1.0.9"
1414
},
1515
"scripts" : {
16-
"test" : "make test-all connectionString=pg://postgres@localhost:5432/node-postgres",
16+
"test" : "make test-all connectionString=pg://postgres@localhost:5432/postgres",
1717
"install" : "node-gyp rebuild || (exit 0)"
1818
},
1919
"engines" : { "node": ">= 0.8.0" }

0 commit comments

Comments
 (0)