summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/change-version-handle-reuse.js
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/storage/change-version-handle-reuse.js')
-rw-r--r--LayoutTests/storage/change-version-handle-reuse.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/LayoutTests/storage/change-version-handle-reuse.js b/LayoutTests/storage/change-version-handle-reuse.js
index e948614..847a58c 100644
--- a/LayoutTests/storage/change-version-handle-reuse.js
+++ b/LayoutTests/storage/change-version-handle-reuse.js
@@ -9,7 +9,7 @@ function finishTest()
function runTest()
{
try {
- db = openDatabase("ChangeVersion" + DB_TEST_SUFFIX, "", "Test that changing a database version doesn't kill our handle to it", 1);
+ db = openDatabaseWithSuffix("ChangeVersion", "", "Test that changing a database version doesn't kill our handle to it", 1);
var version = db.version;
var newVersion = version ? (parseInt(version) + 1).toString() : "1";
db.changeVersion(version, newVersion, function(tx) {