@@ -319,7 +319,7 @@ def test_basic_varres_field_bzx_fail(self):
319319 self .anc .fields = [self .fld ]
320320 with six .assertRaisesRegex (
321321 self , ValidateError ,
322- "Field start longitude \(bzx\) not RMDI" ):
322+ r "Field start longitude \(bzx\) not RMDI" ):
323323 self .anc .validate ()
324324
325325 # Test a variable resolution field with non RMDI bzy fails
@@ -335,7 +335,7 @@ def test_basic_varres_field_bzy_fail(self):
335335 self .anc .fields = [self .fld ]
336336 with six .assertRaisesRegex (
337337 self , ValidateError ,
338- "Field start latitude \(bzy\) not RMDI" ):
338+ r "Field start latitude \(bzy\) not RMDI" ):
339339 self .anc .validate ()
340340
341341 # Test a variable resolution field with non RMDI bdx fails
@@ -351,7 +351,7 @@ def test_basic_varres_field_bdx_fail(self):
351351 self .anc .fields = [self .fld ]
352352 with six .assertRaisesRegex (
353353 self , ValidateError ,
354- "Field longitude interval \(bdx\) not RMDI" ):
354+ r "Field longitude interval \(bdx\) not RMDI" ):
355355 self .anc .validate ()
356356
357357 # Test a variable resolution field with non RMDI bdy fails
@@ -367,7 +367,7 @@ def test_basic_varres_field_bdy_fail(self):
367367 self .anc .fields = [self .fld ]
368368 with six .assertRaisesRegex (
369369 self , ValidateError ,
370- "Field latitude interval \(bdy\) not RMDI" ):
370+ r "Field latitude interval \(bdy\) not RMDI" ):
371371 self .anc .validate ()
372372
373373 # Test lower boundary x value just within tolerance passes
0 commit comments