Skip to content

Commit

Permalink
chore: consistent casing for C daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Nov 6, 2024
1 parent c1af3ef commit c683c7d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/e2e_all/scripts/tests/v4_dart_inline
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ daemonVersion="$1"
clientVersion="$2"

if [[ ${daemonVersion:0:1} == "c" ]]; then
logInfo " N/A because c daemon isn't compatible with v4 clients"
logInfo " N/A because C daemon isn't compatible with v4 clients"
exit 50
fi

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_all/scripts/tests/v4_openssh_print
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ daemonVersion="$1"
clientVersion="$2"

if [[ ${daemonVersion:0:1} == "c" ]]; then
logInfo " N/A because c daemon isn't compatible with v4 clients"
logInfo " N/A because C daemon isn't compatible with v4 clients"
exit 50
fi

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_all/scripts/tests/v5_dart_inline
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ daemonVersion="$1"
clientVersion="$2"

if [[ ${daemonVersion:0:1} == "c" ]] && [[ $(versionIsLessThan "$clientVersion" "d:5.3.0") == "true" ]]; then
logInfo " N/A because c daemon requires clients >= v5.3.0"
logInfo " N/A because C daemon requires clients >= v5.3.0"
exit 50
fi

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_all/scripts/tests/v5_openssh_inline
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ daemonVersion="$1"
clientVersion="$2"

if [[ ${daemonVersion:0:1} == "c" ]] && [[ $(versionIsLessThan "$clientVersion" "d:5.3.0") == "true" ]]; then
logInfo " N/A because c daemon requires clients >= v5.3.0"
logInfo " N/A because C daemon requires clients >= v5.3.0"
exit 50
fi

Expand Down

0 comments on commit c683c7d

Please sign in to comment.