Fix for formatting for python language servers#10060
Conversation
Signed-off-by: Dmytro Kulieshov <dkuliesh@redhat.com>
|
ci-test |
|
ci-test build report: |
|
We've found regression in the Reproduction Steps
int isEven(int x) {
return x % 2 == 0;
}
Expected result: The content should be int isEven(int x) { return x % 2 == 0; }Actual result: The formatting is not applied correctly. |
|
So, we check all existed selenium tests and checked all usecases according to manual test plan for language servers: https://github.com/eclipse/che/wiki/Test-plan-for-checking-Language-servers. |
…dits Signed-off-by: Dmytro Kulieshov <dkuliesh@redhat.com>
|
ci-test |
|
ci-test build report: |
|
The existed selenium tests did not find new regression. During manual test plan we did not find new bugs. |

Related issue: #9854
Fixed full text formatting by correcting endLine and endCharacter values.