Skip to content

Commit

Permalink
fix test (#11049)
Browse files Browse the repository at this point in the history
Repairs a test not run in CI

(cherry picked from commit f409cb8)
  • Loading branch information
GregoryTravis authored and jdunkerley committed Sep 11, 2024
1 parent cc06b93 commit cb7e2d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Snowflake_Tests/src/Snowflake_Spec.enso
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,8 @@ snowflake_specific_spec suite_builder default_connection db_name setup =
col . cast Value_Type.Decimal . round 1 . value_type . should_equal (Value_Type.Decimal 38 1)

col . cast Value_Type.Float . round use_bankers=True . value_type . should_equal Value_Type.Float
col . cast Value_Type.Integer . round use_bankers=True . value_type . should_equal (Value_Type.Decimal 38 12)
col . cast Value_Type.Decimal . round use_bankers=True . value_type . should_equal (Value_Type.Decimal 38 12)
col . cast Value_Type.Integer . round use_bankers=True . value_type . should_equal Value_Type.Float
col . cast Value_Type.Decimal . round use_bankers=True . value_type . should_equal Value_Type.Float

col . cast Value_Type.Float . ceil . value_type . should_equal Value_Type.Float
col . cast Value_Type.Integer . ceil . value_type . should_equal (Value_Type.Decimal 38 0)
Expand Down

0 comments on commit cb7e2d6

Please sign in to comment.