Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit a695ae1

Browse files
authored
refactor: move celestia-app to testdata (#31)
* refactor: move celestia-app to testdata * updates * fixes
1 parent 20d7c67 commit a695ae1

12 files changed

+16
-14
lines changed

appd/data.go renamed to appd/internal/testdata/data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package appd
1+
package testdata
22

33
import (
44
"fmt"

appd/data_darwin_amd64.go renamed to appd/internal/testdata/data_darwin_amd64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package appd
1+
package testdata
22

33
import _ "embed"
44

appd/data_darwin_arm64.go renamed to appd/internal/testdata/data_darwin_arm64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package appd
1+
package testdata
22

33
import _ "embed"
44

appd/data_linux_amd64.go renamed to appd/internal/testdata/data_linux_amd64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package appd
1+
package testdata
22

33
import _ "embed"
44

appd/data_linux_arm64.go renamed to appd/internal/testdata/data_linux_arm64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package appd
1+
package testdata
22

33
import _ "embed"
44

appd/data_test.go renamed to appd/internal/testdata/data_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
package appd
1+
package testdata
22

33
import (
44
"fmt"
5-
"github.com/stretchr/testify/require"
65
"testing"
6+
7+
"github.com/stretchr/testify/require"
78
)
89

910
func TestCelestiaApp(t *testing.T) {

0 commit comments

Comments
 (0)