Skip to content

Commit fd3b34e

Browse files
authored
Fix the 'sample13 sln with solution files' (#235)
One of the previpis 2 PRs added a test that expected the test folder name to include path separators, and then the other fixed it so that the folder names are just the names with no separators, so the two didn't get on with each other
1 parent 65a4143 commit fd3b34e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Ionide.ProjInfo.Tests/Tests.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2322,7 +2322,7 @@ let sample13SolutionFilesTest toolsPath loaderType workspaceFactory =
23222322
let solutionItem = solutionContents.Items[0]
23232323

23242324
Expect.equal solutionItem.Guid (Guid("8ec462fd-d22e-90a8-e5ce-7e832ba40c5d")) "Should have the epxcted guid"
2325-
Expect.equal solutionItem.Name $"{Path.DirectorySeparatorChar}Solution Items{Path.DirectorySeparatorChar}" "Should have the expected folder name"
2325+
Expect.equal solutionItem.Name "Solution Items" "Should have the expected folder name"
23262326

23272327
match solutionItem.Kind with
23282328
| InspectSln.Folder(_, files) ->

0 commit comments

Comments
 (0)