Skip to content

Commit dacf20f

Browse files
d-w-moorealanking
authored andcommitted
[#3] data_obj_test.TestDataObjOps.test_create_from_invalid_path__250 passes on 4.3.0
1 parent 03a6f80 commit dacf20f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

irods/test/data_obj_test.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,9 @@ def test_obj_does_not_exist(self):
412412

413413

414414
def test_create_from_invalid_path__250(self):
415-
possible_exceptions = { ex.CAT_UNKNOWN_COLLECTION: (lambda serv_vsn : serv_vsn >= (4,2,9)),
416-
ex.SYS_INVALID_INPUT_PARAM: (lambda serv_vsn : serv_vsn <= (4,2,8))
415+
possible_exceptions = { ex.SYS_INVALID_INPUT_PARAM: (lambda serv_vsn : serv_vsn <= (4,2,8)),
416+
ex.CAT_UNKNOWN_COLLECTION: (lambda serv_vsn : (4,2,9) <= serv_vsn < (4,3,0)),
417+
ex.SYS_INVALID_FILE_PATH: (lambda serv_vsn : (4,3,0) <= serv_vsn)
417418
}
418419
raisedExc = None
419420
try:

0 commit comments

Comments
 (0)