From d4d57ef1547f577a0287e35a646b78ceb2d7e7a4 Mon Sep 17 00:00:00 2001 From: Elizabeth Worstell Date: Thu, 8 Feb 2024 11:02:47 -0800 Subject: [PATCH] fix: use toUpperCamel in integration tests --- integration/integration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/integration_test.go b/integration/integration_test.go index e56ac3d936..7054880f9a 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -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), @@ -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 {