test: use should for easier debugging
This commit is contained in:
parent
b965a31f77
commit
cb118de2cd
|
@ -126,7 +126,7 @@ function charsetTest(test_set, test_collo, test_set_str, test_set_collo, done) {
|
|||
db.driver.escape(db.settings.database) + ' LIMIT 1';
|
||||
db.connector.execute(q, function (err, r) {
|
||||
assert.ok(!err);
|
||||
assert.ok(r[0].DEFAULT_COLLATION_NAME.match(test_collo));
|
||||
should(r[0].DEFAULT_COLLATION_NAME).match(test_collo);
|
||||
db.connector.execute('SHOW VARIABLES LIKE "character_set%"', function (err, r) {
|
||||
assert.ok(!err);
|
||||
var hit_all = 0;
|
||||
|
|
Loading…
Reference in New Issue