Skip to content

Commit 3a29943

Browse files
committed
Fixed unit test where tables array does exist, but it is empty.
1 parent d4d53ee commit 3a29943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ describe("Check Table operations", function() {
4646
if(err){
4747
should.exist(err);
4848
} else {
49-
should.not.exist(data);
49+
expect(data.TableNames).to.be.empty;
5050
}
5151
done();
5252
});

0 commit comments

Comments
 (0)