Skip to content

Commit fd02f0a

Browse files
Update status code to not fail when training with no positive examples.
1 parent 8bd5ab3 commit fd02f0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/models-int-tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ describe('Integration Tests - Models', () => {
6969
var version = model.modelVersion;
7070
expect(version.id).toBeDefined();
7171
expect(version.created_at).toBeDefined();
72-
expect(version.status.code).toBe(21111);
72+
expect(version.status.code).toBe(21100);
7373
done();
7474
})
7575
.catch(errorHandler.bind(done));

0 commit comments

Comments
 (0)