@@ -776,7 +776,8 @@ def test_write_through_unbound_process_write_failure_exception(self):
776776 with self .assertRaises (TM1pyWriteFailureException ) as ex :
777777 self .tm1 .cells .write_through_unbound_process (self .cube_with_consolidations_name , cells )
778778 self .assertEqual (ex .exception .statuses , ["Aborted" ])
779- self .assertIn (".log" , ex .exception .error_log_files [0 ])
779+
780+ self .assertIn ("log" , ex .exception .error_log_files [0 ].lower ())
780781
781782 query = MdxBuilder .from_cube (self .cube_with_consolidations_name )
782783 query .add_member_tuple_to_columns (
@@ -796,7 +797,8 @@ def test_write_through_unbound_process_write_partial_failure_exception(self):
796797 self .tm1 .cells .write_through_unbound_process (self .cube_with_consolidations_name , cells )
797798 self .assertEqual (ex .exception .statuses , ["HasMinorErrors" ])
798799 self .assertEqual (ex .exception .attempts , 1 )
799- self .assertIn (".log" , ex .exception .error_log_files [0 ])
800+
801+ self .assertIn ("log" , ex .exception .error_log_files [0 ].lower ())
800802
801803 query = MdxBuilder .from_cube (self .cube_with_consolidations_name )
802804 query .add_member_tuple_to_columns (
@@ -959,7 +961,8 @@ def test_write_through_blob_write_failure_exception(self):
959961 with self .assertRaises (TM1pyWritePartialFailureException ) as ex :
960962 self .tm1 .cells .write_through_blob (self .cube_with_consolidations_name , cells )
961963 self .assertEqual (ex .exception .statuses , ["HasMinorErrors" ])
962- self .assertIn (".log" , ex .exception .error_log_files [0 ])
964+
965+ self .assertIn ("log" , ex .exception .error_log_files [0 ].lower ())
963966
964967 query = MdxBuilder .from_cube (self .cube_with_consolidations_name )
965968 query .add_member_tuple_to_columns (
@@ -979,7 +982,8 @@ def test_write_through_blob_write_partial_failure_exception(self):
979982 self .tm1 .cells .write_through_blob (self .cube_with_consolidations_name , cells )
980983 self .assertEqual (ex .exception .statuses , ["HasMinorErrors" ])
981984 self .assertEqual (ex .exception .attempts , 1 )
982- self .assertIn (".log" , ex .exception .error_log_files [0 ])
985+
986+ self .assertIn ("log" , ex .exception .error_log_files [0 ].lower ())
983987
984988 query = MdxBuilder .from_cube (self .cube_with_consolidations_name )
985989 query .add_member_tuple_to_columns (
0 commit comments