Skip to content

Commit

Permalink
feat(ref-imp): #781 - lint
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacJChen committed Sep 24, 2020
1 parent a0ba896 commit 92ef1e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/core/versions/latest/Delta.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ErrorCode from './ErrorCode';
import JsonCanonicalizer from './util/JsonCanonicalizer';
import ProtocolParameters from './ProtocolParameters';
import SidetreeError from '../../../common/SidetreeError';
import JsonCanonicalizer from './util/JsonCanonicalizer';

/**
* Class containing reusable operation delta functionalities.
Expand All @@ -10,7 +10,7 @@ export default class Delta {

/**
* Validates size of the encoded delta string.
* TODO: SIP 2 #781 delete this and use validateDeltaSize only
* TODO: SIP 2 #781 delete this and use validateDeltaSize only in chunk file
* @throws `SidetreeError` if fails validation.
*/
public static validateEncodedDeltaSize (encodedDelta: string) {
Expand Down
2 changes: 1 addition & 1 deletion tests/core/Did.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('DID', async () => {
} catch (e) {
expect(e.code).toEqual(ErrorCode.DeltaExceedsMaximumSize);
}
})
});
});

describe('create()', async () => {
Expand Down

0 comments on commit 92ef1e2

Please sign in to comment.