Update unit test data

This commit is contained in:
Bo Maryniuk 2017-10-30 15:40:58 +01:00
parent 47fbe03c14
commit 39126da5a2

View File

@ -865,10 +865,10 @@ class FilemodLineTests(TestCase, LoaderModuleMockMixin):
:return:
'''
src = '<here is something>'
assert 1 == filemod._starts_till(src=src, probe='<here quite something else>')
assert 0 == filemod._starts_till(src=src, probe='<here is something>')
assert -1 == filemod._starts_till(src=src, probe='<and here is something>')
src = 'here is something'
assert 1 == filemod._starts_till(src=src, probe='here quite something else')
assert 0 == filemod._starts_till(src=src, probe='here is something')
assert -1 == filemod._starts_till(src=src, probe='and here is something')