Remove useless test file package_test.go

package_test.go merely tested whether package import at the start of
source files worked or not which got added in the early days of the
project. With the progress made so far this import check is no longer
relevant or useful these days. Therefore remove it from the repository.

Signed-off-by: Anoop C S <anoopcs@samba.org>
This commit is contained in:
Anoop C S 2023-05-08 12:14:54 +05:30 committed by mergify[bot]
parent 39336dae84
commit 009a3fa2c1
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
package ceph
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestImports(t *testing.T) {
if !assert.Equal(t, 1, 1) {
t.Error("Something is wrong.")
}
}