Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 22:30:43 -08:00
parent 0ceebbee9c
commit 669b7aded0
4 changed files with 13 additions and 10 deletions

View File

@ -93,9 +93,9 @@ def test_file_convert_stl():
file.close()
# Get the fc.
fc: FileConversion = post_file_convertsion_with_base64_helper.sync(
fc: FileConversion = post_file_conversion_with_base64_helper.sync(
client=client,
content=content,
body=content,
source_format=ValidSourceFileFormat.STL,
output_format=ValidOutputFileFormat.OBJ)
@ -115,7 +115,7 @@ async def test_file_convert_stl_async():
file.close()
# Get the fc.
fc: FileConversion = await post_file_convertsion_with_base64_helper.asyncio(client=client, content=content, source_format=ValidSourceFileFormat.STL, output_format=ValidOutputFileFormat.OBJ)
fc: FileConversion = await post_file_conversion_with_base64_helper.asyncio(client=client, body=content, source_format=ValidSourceFileFormat.STL, output_format=ValidOutputFileFormat.OBJ)
assert fc is not None