run auto fix lint

This commit is contained in:
Olivier Gagnon
2021-04-29 23:52:56 -04:00
parent 77cb63e36a
commit 3fad505096
183 changed files with 1547 additions and 1546 deletions

View File

@@ -1089,7 +1089,7 @@ describe("Stock Market Tests", function() {
shares: 1e3,
price: 9e3,
type: OrderTypes.LimitBuy,
pos: PositionTypes.Long
pos: PositionTypes.Long,
});
expect(res).to.equal(true);
expect(StockMarket["Orders"][stock.symbol]).to.have.lengthOf(0);
@@ -1107,7 +1107,7 @@ describe("Stock Market Tests", function() {
shares: 999,
price: 9e3,
type: OrderTypes.LimitBuy,
pos: PositionTypes.Long
pos: PositionTypes.Long,
});
expect(res2).to.equal(false);
expect(StockMarket["Orders"][stock.symbol]).to.have.lengthOf(1);