Skip to content

Commit cda2b24

Browse files
committed
Fixed a test case to check only for ORA-###
1 parent 0a8d213 commit cda2b24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dataTypeRowid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ describe('39. dataTypeRowid.js', function() {
114114
"update " + tableName + " set ROWID = CHARTOROWID('AAAspiAABAAAZnJAAE') where num = 1",
115115
function(err) {
116116
should.exist(err);
117-
should.strictEqual(err.message, "ORA-01747: invalid user.table.column, table.column, or column specification");
117+
should.strictEqual(err.message.startsWith("ORA-01747:"), true);
118118
done();
119119
}
120120
);

0 commit comments

Comments
 (0)