@@ -22,7 +22,7 @@ def target_function(self):
2222
2323class MyClass:
2424
25- @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ( "test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=True)
25+ @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file ("test_return_values" ). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=True)
2626 def __init__(self):
2727 self.x = 1
2828
@@ -86,7 +86,7 @@ def target_function(self):
8686
8787class MyClass(ParentClass):
8888
89- @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=True)
89+ @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=True)
9090 def __init__(self, *args, **kwargs):
9191 super().__init__(*args, **kwargs)
9292
@@ -128,7 +128,7 @@ def helper(self):
128128
129129class MyClass:
130130
131- @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=True)
131+ @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=True)
132132 def __init__(self):
133133 self.x = 1
134134
@@ -184,7 +184,7 @@ def helper(self):
184184
185185class MyClass:
186186
187- @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=True)
187+ @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=True)
188188 def __init__(self):
189189 self.x = 1
190190
@@ -197,7 +197,7 @@ def target_function(self):
197197
198198class HelperClass:
199199
200- @codeflash_capture(function_name='HelperClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=False)
200+ @codeflash_capture(function_name='HelperClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=False)
201201 def __init__(self):
202202 self.y = 1
203203
@@ -271,7 +271,7 @@ def another_helper(self):
271271
272272class MyClass:
273273
274- @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=True)
274+ @codeflash_capture(function_name='MyClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=True)
275275 def __init__(self):
276276 self.x = 1
277277
@@ -289,7 +289,7 @@ def target_function(self):
289289
290290class HelperClass1:
291291
292- @codeflash_capture(function_name='HelperClass1.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=False)
292+ @codeflash_capture(function_name='HelperClass1.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=False)
293293 def __init__(self):
294294 self.y = 1
295295
@@ -304,7 +304,7 @@ def helper1(self):
304304
305305class HelperClass2:
306306
307- @codeflash_capture(function_name='HelperClass2.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=False)
307+ @codeflash_capture(function_name='HelperClass2.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=False)
308308 def __init__(self):
309309 self.z = 2
310310
@@ -313,7 +313,7 @@ def helper2(self):
313313
314314class AnotherHelperClass:
315315
316- @codeflash_capture(function_name='AnotherHelperClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" ))!s } ', tests_root='{ test_path .parent !s } ', is_fto=False)
316+ @codeflash_capture(function_name='AnotherHelperClass.__init__', tmp_dir_path='{ get_run_tmp_file (Path ("test_return_values" )). as_posix () } ', tests_root='{ test_path .parent . as_posix () } ', is_fto=False)
317317 def __init__(self, *args, **kwargs):
318318 super().__init__(*args, **kwargs)
319319
0 commit comments