-
Notifications
You must be signed in to change notification settings - Fork 312
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
controller_manager: Add space to string literal concatenation #1245
controller_manager: Add space to string literal concatenation #1245
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems fair
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There is no space between the string literals, "following" and "controllers". This results in "followingcontrollers", which is not what we want. Add a space to the first string to fix this. Signed-off-by: Yasushi SHOJI <[email protected]>
25e41d5
to
3cc4fdd
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1245 +/- ##
=======================================
Coverage 47.82% 47.82%
=======================================
Files 40 40
Lines 3448 3448
Branches 1869 1869
=======================================
Hits 1649 1649
Misses 456 456
Partials 1343 1343
Flags with carried forward coverage won't be shown. Click here to find out more.
|
(cherry picked from commit 0a7b149)
(cherry picked from commit 0a7b149)
…ntrols#1245) Signed-off-by: roscan-tech <[email protected]>
…#1747) Signed-off-by: roscan-tech <[email protected]> Co-authored-by: Yasushi SHOJI <[email protected]>
There is no space between the string literals, "following" and "controllers". This results in "followingcontrollers", which is not what we want.
Add a space to the first string to fix this.