### Describe the bug <!--A clear and concise description of what the bug is. --> I have a test named `1 + 1 = 2` with Expecto and here is how it appear in the test explorer view:  ### Steps to reproduce <!-- Add here the step to reproduce you problem. Example: --> <!-- 1. Open an F# file --> <!-- 2. Ctrl + P > "F# Add Reference" --> 1. Create a test list with the following code ```fs [<Tests>] let tests = testList "All" [ test "1 + 1 = 2" { let actual = 1 + 1 Expect.equal actual 2 } ] ``` 2. Open the test explorer view ### Link to sample reproduction <!--Link to repository or gist that can be used to reproduce issue --> ### Expected behaviour <!-- A clear and concise description of what you expected to happen. --> Should not split the test in 2 lines. ### Screenshots <!--If applicable, add screenshots to help explain your problem. --> ## Machine info - OS: Mac - .NET SDK version: [e.g. 5.0.100]8.0.204 - Ionide version: [e.g 5.0.1, don't use descriptions like `latest` ]: 7.19.1 ### Additional context Add any other context about the problem here.