Skip to content

Commit

Permalink
Fixed unit test for Travis Build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pamblam committed Jan 20, 2021
1 parent 50454d2 commit 6baff0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions test/memory-stress-test.js
Expand Up @@ -5,9 +5,9 @@

// SET THESE FOR LOCAL TESTING ONLY!
// RESET THEM TO '' BEFORE COMMITING CHANGES!
const mysql_host = 'localhost';
const mysql_user = 'root';
const mysql_pass = 'ourtown1972';
const mysql_host = '';
const mysql_user = '';
const mysql_pass = '';

const fs = require('fs');
const expect = require('chai').expect;
Expand Down
6 changes: 3 additions & 3 deletions test/test.js
@@ -1,9 +1,9 @@

// SET THESE FOR LOCAL TESTING ONLY!
// RESET THEM TO '' BEFORE COMMITING CHANGES!
const mysql_host = 'localhost';
const mysql_user = 'root';
const mysql_pass = 'ourtown1972';
const mysql_host = '';
const mysql_user = '';
const mysql_pass = '';

const expect = require('chai').expect;
const {errorHandler,query,mysqlConnect,createTestDB,destroyTestDB,closeConnection} = require('./test-helpers.js');
Expand Down

0 comments on commit 6baff0c

Please sign in to comment.