Skip to content

Commit 1e0f191

Browse files
committed
remove BOM from project file
1 parent bb96fd9 commit 1e0f191

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

test/cli/project_test.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,7 @@ def test_slnx_no_xml_root(tmpdir):
148148

149149

150150
def test_slnx_no_projects(tmpdir):
151-
content = "\xEF\xBB\xBF\r\n" \
152-
'<?xml version="1.0" encoding="UTF-8"?>\r\n' \
151+
content = '<?xml version="1.0" encoding="UTF-8"?>\r\n' \
153152
"<Solution>\r\n" \
154153
" <Configurations>\r\n" \
155154
' <Platform Name="x64" />\r\n' \
@@ -163,8 +162,7 @@ def test_slnx_no_projects(tmpdir):
163162

164163

165164
def test_slnx_project_file_not_found(tmpdir):
166-
content = "\xEF\xBB\xBF\r\n" \
167-
'<?xml version="1.0" encoding="UTF-8"?>\r\n' \
165+
content = '<?xml version="1.0" encoding="UTF-8"?>\r\n' \
168166
"<Solution>\r\n" \
169167
" <Configurations>\r\n" \
170168
' <Platform Name="x64" />\r\n' \

0 commit comments

Comments
 (0)