Fix K1 diagnostic test
diff --git a/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt b/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt
index dcb4984..0a0cfc8 100644
--- a/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt
+++ b/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt
@@ -25,7 +25,7 @@
 
 @JsExport
 interface InterfaceWithCompanion {
-    companion <!WRONG_EXPORTED_DECLARATION("companion object inside exported interface")!>object<!> {
+    companion object {
         fun foo() = 42
     }
 }