Skip to content

Commit

Permalink
checking slashes does not work in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Oct 10, 2022
1 parent c4cc4db commit 5fce059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/make_tools/test_file_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def test_unclosed_log(self):
assert False
except Exception as ex1:
self.assertIn('Unclosed log_info("test %f", -3.0f in ', str(ex1))
self.assertIn("mistakes/unclosed.c", str(ex1))
self.assertIn("unclosed.c", str(ex1))

def test_semi(self):
class_file = sys.modules[self.__module__].__file__
Expand Down

0 comments on commit 5fce059

Please sign in to comment.