Closed JHertz5 closed 2 months ago
I've raised PR #1224 which resolves this issue.
Evening @JHertz5 ,
Thank you for tracking that down. Time go away from me and it was pretty low on my priority list.
I will get this merged to master.
Regards,
--Jeremy
Environment VSG v3.25.0
Describe the bug The following warnings appear during testing
To see an example,
tox test-py311
The solution to this warning can be found in this stack overflow thread https://stackoverflow.com/questions/50504500/deprecationwarning-invalid-escape-sequence-what-to-use-instead-of-d. Basically the regex patterns in tests/entity/test_rule_008.py need to be declared as raw strings instead of a Unicode strings, so that the
/d
isn't interpreted as an escape sequence.