Update creation-tests.js

connection exports 'database' instead of 'path'
This commit is contained in:
za-creature 2013-04-11 23:10:43 +03:00
parent b536867349
commit 264839d3a9

View File

@ -152,7 +152,7 @@ test('libpq connection string building', function() {
assert.equal(subject.user, "bi%na%%ry "); assert.equal(subject.user, "bi%na%%ry ");
assert.equal(subject.password, "s@f#"); assert.equal(subject.password, "s@f#");
assert.equal(subject.host, 'localhost'); assert.equal(subject.host, 'localhost');
assert.equal(subject.path, " u%20rl"); assert.equal(subject.database, " u%20rl");
}); });
}); });