Skip to content

Commit

Permalink
breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 18, 2024
1 parent 52cc72f commit 744a2d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 8 additions & 0 deletions dummy-module/.changeset/v0.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Dummy modules is live!

Features:

- 1
- 2
- 3
- Breaking change
6 changes: 1 addition & 5 deletions dummy-module/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@ import (
dummy_module "github.com/smartcontractkit/chainlink-testing-framework/dummy-module"
)

func FuncTest() error {
return nil
}

func main() {
if err := dummy_module.FuncTest(); err != nil {
if err := dummy_module.FuncTest(0); err != nil {
panic(err)
}
fmt.Println("Hello!")
Expand Down
2 changes: 1 addition & 1 deletion dummy-module/funcs.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package dummy_module

func FuncTest() error {
func FuncTest(a int) error {
return nil
}

0 comments on commit 744a2d9

Please sign in to comment.