Skip to content

Commit 6f8da80

Browse files
author
Abdullah Deliogullari
committed
increase minimum required OracleDB and PythonLibCore version
1 parent 30f3c98 commit 6f8da80

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
oracledb == 1.4.2
1+
oracledb >= 2.0.0
22
robotframework >= 6.1.1
3-
robotframework-pythonlibcore >= 4.2.0
3+
robotframework-pythonlibcore >= 4.3.0

src/OracleDBLibrary/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .base import OracleBase
77

88

9-
__version__ = "0.1.3"
9+
__version__ = "0.1.4"
1010

1111

1212
class OracleDBLibrary(DynamicCore):

tests/Oracle_Connection.robot

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ${WRONG USER ERROR} = DatabaseError: ORA-01017: invalid username/password; logo
1414
${WRONG PASSWORD ERROR} = DatabaseError: ORA-01017: invalid username/password; logon denied
1515
${WRONG HOST ERROR} = OperationalError: DPY-6005: cannot connect to database
1616
${WRONG PORT ERROR} = OperationalError: DPY-6005: cannot connect to database
17-
${WRONG SID ERROR} = OSError: [Errno 57] Socket is not connected
18-
${WRONG SERVICE NAME ERROR} = OSError: [Errno 57] Socket is not connected
17+
${WRONG SID ERROR} = OperationalError: DPY-6005: cannot connect to database
18+
${WRONG SERVICE NAME ERROR} = OperationalError: DPY-6005: cannot connect to database
1919
${WRONG MODE ERROR} = DatabaseError: ORA-01031: insufficient privileges
2020

2121
*** Test Cases ***

0 commit comments

Comments
 (0)