Skip to content

Commit

Permalink
Remove redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Dec 16, 2023
1 parent 6f1f97c commit 4dcdd73
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/unit_tests/data/test_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def test_send_data_request_when_data_type_unrecognized_logs_and_does_nothing(sel
venue=BINANCE,
data_type=DataType(
Data,
metadata={ # str data type is invalid
metadata={
"instrument_id": InstrumentId(Symbol("SOMETHING"), Venue("RANDOM")),
"start": None,
"end": None,
Expand Down Expand Up @@ -360,7 +360,7 @@ def test_send_data_request_with_duplicate_ids_logs_and_does_not_handle_second(se
venue=BINANCE,
data_type=DataType(
QuoteTick,
metadata={ # str data type is invalid
metadata={
"instrument_id": InstrumentId(Symbol("SOMETHING"), Venue("RANDOM")),
"start": None,
"end": None,
Expand All @@ -377,7 +377,7 @@ def test_send_data_request_with_duplicate_ids_logs_and_does_not_handle_second(se
venue=BINANCE,
data_type=DataType(
QuoteTick,
metadata={ # str data type is invalid
metadata={
"instrument_id": InstrumentId(Symbol("SOMETHING"), Venue("RANDOM")),
"start": None,
"end": None,
Expand Down Expand Up @@ -480,7 +480,7 @@ def test_execute_unsubscribe_when_data_type_unrecognized_logs_and_does_nothing(
unsubscribe = Unsubscribe(
client_id=ClientId(BINANCE.value),
venue=BINANCE,
data_type=DataType(Data), # str data type is invalid
data_type=DataType(Data),
command_id=UUID4(),
ts_init=self.clock.timestamp_ns(),
)
Expand Down Expand Up @@ -2003,7 +2003,7 @@ def test_request_instrument_reaches_client(self):
venue=BINANCE,
data_type=DataType(
Instrument,
metadata={ # str data type is invalid
metadata={
"instrument_id": ETHUSDT_BINANCE.id,
},
),
Expand All @@ -2030,7 +2030,7 @@ def test_request_instruments_reaches_client(self):
venue=BINANCE,
data_type=DataType(
Instrument,
metadata={ # str data type is invalid
metadata={
"venue": BINANCE,
},
),
Expand Down

0 comments on commit 4dcdd73

Please sign in to comment.