Skip to content

Commit

Permalink
Fix failing unit test since DECIMAL -> DECIMAL(6,2)
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Whitehouse <[email protected]>
  • Loading branch information
Jesse Whitehouse committed Sep 23, 2023
1 parent ad5314f commit dbbfd6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_conversion_e2e(self):
name="", type="FLOAT", value=TSparkParameterValue(stringValue="1.0")
),
TSparkParameter(
name="", type="DECIMAL", value=TSparkParameterValue(stringValue="1.0")
name="", type="DECIMAL(6,2)", value=TSparkParameterValue(stringValue="1.0")
),
]

Expand Down

0 comments on commit dbbfd6f

Please sign in to comment.