Skip to content

Commit

Permalink
fix: use toUpperCamel in integration tests (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
worstell authored Feb 8, 2024
1 parent be2bda1 commit 75bafdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func TestExternalCalls(t *testing.T) {
for _, callee := range runtimes {
calleeRd := getRuntimeData("echo2", modulesDir, callee)
tests = append(tests, test{
name: fmt.Sprintf("Call%sFrom%s", strcase.ToCamel(callee), strcase.ToCamel(runtime)),
name: fmt.Sprintf("Call%sFrom%s", strcase.ToUpperCamel(callee), strcase.ToUpperCamel(runtime)),
assertions: assertions{
run("ftl", calleeRd.initOpts...),
run("ftl", "deploy", "--wait", calleeRd.moduleRoot),
Expand Down Expand Up @@ -270,7 +270,7 @@ func getRuntimeData(moduleName string, modulesDir string, runtime string) runtim
ftlRoot := filepath.Join(cwd, "..")

t := runtimeData{
testSuffix: strcase.ToCamel(runtime),
testSuffix: strcase.ToUpperCamel(runtime),
moduleName: moduleName,
}
switch runtime {
Expand Down

0 comments on commit 75bafdb

Please sign in to comment.