@@ -13,6 +13,7 @@ def test_mbo_fields() -> None:
1313 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
1414 fields .remove ("record_size" )
1515 fields .remove ("size_hint" )
16+ fields .remove ("ts_index" )
1617
1718 # Act
1819 difference = fields .symmetric_difference (struct ._ordered_fields )
@@ -42,6 +43,7 @@ def test_mbp_fields(
4243 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
4344 fields .remove ("record_size" )
4445 fields .remove ("size_hint" )
46+ fields .remove ("ts_index" )
4547
4648 # Act
4749 difference = fields .symmetric_difference (struct ._ordered_fields )
@@ -74,6 +76,7 @@ def test_ohlcv_fields(
7476 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
7577 fields .remove ("record_size" )
7678 fields .remove ("size_hint" )
79+ fields .remove ("ts_index" )
7780
7881 # Act
7982 difference = fields .symmetric_difference (struct ._ordered_fields )
@@ -92,6 +95,7 @@ def test_trades_struct() -> None:
9295 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
9396 fields .remove ("record_size" )
9497 fields .remove ("size_hint" )
98+ fields .remove ("ts_index" )
9599
96100 # Act
97101 difference = fields .symmetric_difference (struct ._ordered_fields )
@@ -110,6 +114,7 @@ def test_definition_struct() -> None:
110114 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
111115 fields .remove ("record_size" )
112116 fields .remove ("size_hint" )
117+ fields .remove ("ts_index" )
113118
114119 # Act
115120 difference = fields .symmetric_difference (struct ._ordered_fields )
@@ -128,6 +133,7 @@ def test_imbalance_struct() -> None:
128133 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
129134 fields .remove ("record_size" )
130135 fields .remove ("size_hint" )
136+ fields .remove ("ts_index" )
131137
132138 # Act
133139 difference = fields .symmetric_difference (struct ._ordered_fields )
@@ -146,6 +152,7 @@ def test_statistics_struct() -> None:
146152 fields = set (f for f in dir (struct ) if not f .startswith (("_" , "pretty_" )))
147153 fields .remove ("record_size" )
148154 fields .remove ("size_hint" )
155+ fields .remove ("ts_index" )
149156
150157 # Act
151158 difference = fields .symmetric_difference (struct ._ordered_fields )
0 commit comments