Skip to content

Commit

Permalink
[FEATURE] Turn on skip duplicate ID flag (ericyd#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericyd authored Jun 2, 2019
1 parent a3005aa commit d08767c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/FeatureFlag.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const FeatureFlag = {
SKIP_DUPLICATE_ID: false
SKIP_DUPLICATE_ID: true
}

export default FeatureFlag;
2 changes: 1 addition & 1 deletion test/FileService.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ describe('FileService', function() {
const stubCopy = sinon
.stub(this.fileService, 'copyFile')
.returns(this.mockFile);
Util.logCopySuccess = sinon.stub();
Logging.logCopySuccess = sinon.stub();

// run actual
const items = [{ id: 1 }, { id: 2 }, { id: 1 }, { id: 3 }];
Expand Down

0 comments on commit d08767c

Please sign in to comment.