Skip to content

Commit

Permalink
add invalid version tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrizzle committed Jul 15, 2023
1 parent afcf613 commit a30c70b
Show file tree
Hide file tree
Showing 2 changed files with 504 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/common/testutil/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function expectPositionEq(a: Position, b: Position): void {
expect(a.maker).to.equal(b.maker, 'Position:Maker')
expect(a.long).to.equal(b.long, 'Position:Long')
expect(a.short).to.equal(b.short, 'Position:Short')
expect(a.fee).to.equal(b.short, 'Position:Fee')
expect(a.fee).to.equal(b.fee, 'Position:Fee')
// TODO: keeper
}

Expand Down
Loading

0 comments on commit a30c70b

Please sign in to comment.