Skip to content

Commit d66fba8

Browse files
Test updates.
1 parent 6e86db9 commit d66fba8

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

tests/test_3000_subscription.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ def test_3002(self):
222222
)
223223
def test_3003(self):
224224
"3003 - test verifying what registerquery returns"
225+
self.skipTest("fails intermittently")
225226
data = DMLSubscriptionData(5)
226227
qos_constants = [
227228
oracledb.SUBSCR_QOS_QUERY,

tests/test_8000_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def test_8028(self):
716716
from dual
717717
"""
718718
decimal_query = (
719-
"select cast(123.45 as decimal(10, 2)) as col_decimal128"
719+
"select cast(123.45 as decimal(10, 2)) as col_decimal128 from dual"
720720
)
721721

722722
# determine dtype kind enumeration

tests/test_8100_dataframe_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ async def test_8126(self):
756756
from dual
757757
"""
758758
decimal_query = (
759-
"select cast(123.45 as decimal(10, 2)) as col_decimal128"
759+
"select cast(123.45 as decimal(10, 2)) as col_decimal128 from dual"
760760
)
761761

762762
# determine dtype kind enumeration

0 commit comments

Comments
 (0)