Skip to content

Commit e374652

Browse files
Merge pull request #132 from Clarifai/fix_model_train_no_positive_status
Update status code to not fail when training with no positive examples.
2 parents 8bd5ab3 + fd02f0a commit e374652

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)