Skip to content

Commit df6f2dd

Browse files
committed
updating unit tests
1 parent e9788d3 commit df6f2dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ def test_create_limit_order_success(self, mock_post):
179179
order_created = client.create_limit_order("lknalksdj89asdkl",
180180
"ALGO-USD",
181181
Side.BUY,
182-
".19",
182+
.19,
183183
5)
184184

185185
# Check input
186186

187187
call_args = mock_post.call_args_list
188188

189-
order_config = {'limit_limit_gtc': {'limit_price': '.19', 'base_size': '5'}}
189+
order_config = {'limit_limit_gtc': {'limit_price': '0.19', 'base_size': '5'}}
190190

191191
for call in call_args:
192192
args, kwargs = call

0 commit comments

Comments
 (0)