Skip to content

Commit 926ddd5

Browse files
committed
pipeline environment print issue
1 parent 0480cb9 commit 926ddd5

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/test_004_cursor.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11635,7 +11635,6 @@ def test_numeric_extreme_exponents_precision_loss(cursor, db_connection, value,
1163511635

1163611636
# Verify the value was stored and retrieved
1163711637
actual = row[0]
11638-
print(f"✅ {description}: {value} -> {actual}")
1163911638

1164011639
# For extreme small values, check they're mathematically equivalent
1164111640
assert abs(actual - value) < decimal.Decimal('1E-18'), \
@@ -11727,10 +11726,6 @@ def test_numeric_beyond_38_digit_precision_negative(cursor, db_connection, value
1172711726
f"Expected precision error message for {description}, got: {error_msg}"
1172811727
assert "maximum precision supported by SQL Server is 38" in error_msg, \
1172911728
f"Expected SQL Server precision limit message for {description}, got: {error_msg}"
11730-
11731-
print(f"✅ Correctly rejected {description}: {value}")
11732-
11733-
1173411729

1173511730
def test_close(db_connection):
1173611731
"""Test closing the cursor"""

0 commit comments

Comments
 (0)