From 264839d3a9c71f14334f469018d401bbae4a7bc9 Mon Sep 17 00:00:00 2001 From: za-creature Date: Thu, 11 Apr 2013 23:10:43 +0300 Subject: [PATCH] Update creation-tests.js connection exports 'database' instead of 'path' --- test/unit/connection-parameters/creation-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/connection-parameters/creation-tests.js b/test/unit/connection-parameters/creation-tests.js index 2a4689ae..f5f53350 100644 --- a/test/unit/connection-parameters/creation-tests.js +++ b/test/unit/connection-parameters/creation-tests.js @@ -152,7 +152,7 @@ test('libpq connection string building', function() { assert.equal(subject.user, "bi%na%%ry "); assert.equal(subject.password, "s@f#"); assert.equal(subject.host, 'localhost'); - assert.equal(subject.path, " u%20rl"); + assert.equal(subject.database, " u%20rl"); }); });