Skip to content

Commit

Permalink
fwk: rename pkg ./testdata to ./internal/fwktest
Browse files Browse the repository at this point in the history
mkdir -p fwk/internal/fwktest
git mv fwk/testdata/*.go fwk/internal/fwktest
( cd fwk/internal/fwktest; sed -i '' 's/package testdata/package fwktest/' *.go )
git add fwk/internal/fwktest
  • Loading branch information
dolmen authored and sbinet committed May 10, 2022
1 parent 07f22fc commit c04eef8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion fwk/testdata/svc1.go → fwk/internal/fwktest/svc1.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion fwk/testdata/task1.go → fwk/internal/fwktest/task1.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion fwk/testdata/task2.go → fwk/internal/fwktest/task2.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion fwk/testdata/task3.go → fwk/internal/fwktest/task3.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion fwk/testdata/task4.go → fwk/internal/fwktest/task4.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package testdata
package fwktest

import (
"reflect"
Expand Down

0 comments on commit c04eef8

Please sign in to comment.