Skip to content

Commit

Permalink
fix(client/orb_transport/*): tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jochumdev committed Dec 7, 2023
1 parent 138c037 commit 8b42e7e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/orb_transport/drpc/drpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

s := tests.NewSuite(pluginsRoot, []string{Name})
// s.Debug = true
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/grpc/grpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

s := tests.NewSuite(pluginsRoot, []string{Name})
// s.Debug = true
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/h2c/h2c_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

s := tests.NewSuite(pluginsRoot, []string{Name})
// s.Debug = true
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/hertzh2c/hertzh2c_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

return tests.NewSuite(pluginsRoot, []string{Name})
}
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/hertzhttp/hertzhttp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

return tests.NewSuite(pluginsRoot, []string{Name})
}
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/http/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

return tests.NewSuite(pluginsRoot, []string{Name})
}
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/http3/http3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

return tests.NewSuite(pluginsRoot, []string{Name})
}
Expand Down
2 changes: 1 addition & 1 deletion client/orb_transport/https/https_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func newSuite() *tests.TestSuite {
_, filename, _, _ := runtime.Caller(0)
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../../")
pluginsRoot := filepath.Join(filepath.Dir(filename), "../../../")

return tests.NewSuite(pluginsRoot, []string{Name})
}
Expand Down

0 comments on commit 8b42e7e

Please sign in to comment.