Fix order of declarations in package in the klib test

This commit is contained in:
Pavel Punegov
2020-10-22 13:33:00 +03:00
committed by Pavel Punegov
parent bcb638cf57
commit 1abd865c6c
@@ -325,9 +325,9 @@ class ContentsTest {
fun topLevelPropertiesWithClassesCustomPackage() = klibContents(testLibrary("TopLevelPropertiesWithClassesCustomPackage")) {
"""
package custom.pkg {
typealias MyTransformer = (String) -> Int
object Bar
class Foo constructor()
typealias MyTransformer = (String) -> Int
}
package custom.pkg {
@@ -343,9 +343,9 @@ class ContentsTest {
fun topLevelPropertiesWithClassesRootPackage() = klibContents(testLibrary("TopLevelPropertiesWithClassesRootPackage")) {
"""
package <root> {
typealias MyTransformer = (String) -> Int
object Bar
class Foo constructor()
typealias MyTransformer = (String) -> Int
}
package <root> {