diff --git a/tests/core/file/fileManipulate.test.ts b/tests/core/file/fileManipulate.test.ts index 43334026..e5330175 100644 --- a/tests/core/file/fileManipulate.test.ts +++ b/tests/core/file/fileManipulate.test.ts @@ -777,30 +777,6 @@ func main() { - fmt.Println("Hello") -}`, - }, - { - name: 'Go nested block comments', - ext: '.go', - input: `package main - -/* Outer comment - /* Inner comment */ - Still in outer comment -*/ - -func main() { - fmt.Println("Hello") -}`, - expected: `package main - - - - Still in outer comment -*/ - -func main() { fmt.Println("Hello") }`, },