changed integration test to depend on row array methods for

future-proofing any accidental api change
This commit is contained in:
brianc 2010-11-03 23:08:14 -05:00
parent 2efe451ee6
commit dbc84f69f0

View File

@ -136,7 +136,7 @@ test("prepared statements on different clients", function() {
test('gets right data', function() {
assert.emits(query, 'row', function(row) {
assert.equal(row[0], 1);
assert.equal(row.pop(), 1);
});
});