aboutsummaryrefslogtreecommitdiff
path: root/test/database.unit.js
diff options
context:
space:
mode:
authorCarlos Carvalho <[email protected]>2020-10-04 02:23:19 -0300
committerCarlos Carvalho <[email protected]>2020-10-04 02:23:19 -0300
commit6c39b4ae15cb6ca9271ba4740e43dd521732e8f4 (patch)
tree55c6240a2a9e98aad02507cbf027c316f275c797 /test/database.unit.js
parente02bef83aa53c79f8bd43068bfa346258c878189 (diff)
downloadfaker-6c39b4ae15cb6ca9271ba4740e43dd521732e8f4.tar.xz
faker-6c39b4ae15cb6ca9271ba4740e43dd521732e8f4.zip
Fix typo
Diffstat (limited to 'test/database.unit.js')
-rw-r--r--test/database.unit.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/database.unit.js b/test/database.unit.js
index 57e12325..b3955fea 100644
--- a/test/database.unit.js
+++ b/test/database.unit.js
@@ -11,7 +11,7 @@ describe("database.js", function () {
var column = faker.database.column();
var expected = 'title';
- assert.strictEqual(column, expected, "The column name should be equals " + expected + ". Actual is " + column);
+ assert.strictEqual(column, expected, "The column name should be equals " + expected + ". Current is " + column);
faker.database.column.restore();
});
});
@@ -22,7 +22,7 @@ describe("database.js", function () {
var collation = faker.database.collation();
var expected = 'utf8_bin';
- assert.strictEqual(collation, expected, "The collation should be equals " + expected + ". Actual is " + collation);
+ assert.strictEqual(collation, expected, "The collation should be equals " + expected + ". Current is " + collation);
faker.database.collation.restore();
});
});
@@ -33,7 +33,7 @@ describe("database.js", function () {
var engine = faker.database.engine();
var expected = 'InnoDB';
- assert.strictEqual(engine, expected, "The db engine should be equals " + expected + ". Actual is " + engine);
+ assert.strictEqual(engine, expected, "The db engine should be equals " + expected + ". Current is " + engine);
faker.database.engine.restore();
});
});
@@ -44,7 +44,7 @@ describe("database.js", function () {
var type = faker.database.type();
var expected = 'int';
- assert.strictEqual(type, expected, "The column type should be equals " + expected + ". Actual is " + type);
+ assert.strictEqual(type, expected, "The column type should be equals " + expected + ". Current is " + type);
faker.database.type.restore();
});
});