update tests and fixture

This commit is contained in:
2016-05-19 14:12:01 -07:00
parent ca0da61a69
commit 9ab3bb048e
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ Client.prototype.get = function (params = {}, source = {}) {
const _source = Object.assign({
jobtype: 'jobtype',
created_by: null,
created_by: false,
payload: {
id: 'sample-job-1',
now: 'Mon Apr 25 2016 14:13:04 GMT-0700 (MST)'

View File

@@ -14,7 +14,7 @@ const Job = module;
const maxPriority = 20;
const minPriority = -20;
const defaultPriority = 10;
const defaultCreatedBy = null;
const defaultCreatedBy = false;
describe('Job Class', function () {
let client;