tests: testConfig -> TestConfig

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-06-07 14:47:16 -07:00
parent 2acf0ce4e5
commit 7ce8dd26f1
6 changed files with 36 additions and 36 deletions

View File

@@ -5,7 +5,7 @@ import (
"dagger.io/dagger"
)
testConfig: {
TestConfig: {
host: string @dagger(input)
user: string @dagger(input)
key: dagger.#Secret @dagger(input)
@@ -20,10 +20,10 @@ TestRun: {
ref: "hello-world"
ssh: {
host: testConfig.host
user: testConfig.user
key: testConfig.key
keyPassphrase: testConfig.passphrase
host: TestConfig.host
user: TestConfig.user
key: TestConfig.key
keyPassphrase: TestConfig.passphrase
}
}
}