Skip to content

Commit 8137023

Browse files
committed
Fix file reference
1 parent b71c552 commit 8137023

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/cli/test_initialize.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_init_command_default(self):
138138
self.assertTrue(
139139
self.is_same_file_content(
140140
readme_file_path,
141-
os.path.join(self.template_dir, "README.md.template")
141+
os.path.join(self.template_dir, "readme.md.template")
142142
)
143143
)
144144

@@ -245,7 +245,7 @@ def test_initialize_command_web(self):
245245
self.assertTrue(
246246
self.is_same_file_content(
247247
readme_file_path,
248-
os.path.join(self.template_dir, "README.md.template")
248+
os.path.join(self.template_dir, "readme.md.template")
249249
)
250250
)
251251

@@ -352,7 +352,7 @@ def test_initialize_command_azure_function(self):
352352
self.assertTrue(
353353
self.is_same_file_content(
354354
readme_file_path,
355-
os.path.join(self.template_dir, "README.md.template")
355+
os.path.join(self.template_dir, "readme.md.template")
356356
)
357357
)
358358

0 commit comments

Comments
 (0)