Unify test package names in kotlin-stdlib tests

This makes 'test.' an implicit package prefix, thus fixing the inspection
"Package directive doesn't match file location" positive in almost all
test files.
This commit is contained in:
Ilya Gorbunov
2021-02-21 01:35:43 +03:00
parent a6d8bf8127
commit ca6ce151a2
11 changed files with 33 additions and 28 deletions
@@ -1,9 +1,9 @@
/*
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package unsigned
package test.unsigned
import kotlin.test.Test
import kotlin.test.expect