Paul Bosonetto

Results 1 issues of Paul Bosonetto

``` self.assertRegex(a, b) # assert a.search(b) self.assertNotRegex(a, b) # assert not a.search(b) ``` Not sure these are correct. I don't think `search()` is a method of string. It should probably...