URL: https://github.com/SSSD/sssd/pull/5706 Author: pbrezina Title: #5706: multihost: fix whitespace issues Action: opened
PR body: """ whitespace test fails with: ``` Missing new line at the eof: src/tests/multihost/ipa/add-groups.ps1 Missing new line at the eof: src/tests/multihost/ipa/nestedgroups.csv ``` """ To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/5706/head:pr5706 git checkout pr5706
From bede8f45a572d253e5472287eed98d4d75117ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20B=C5=99ezina?= <[email protected]> Date: Thu, 8 Jul 2021 12:30:45 +0200 Subject: [PATCH] multihost: fix whitespace issues whitespace test fails with: ``` Missing new line at the eof: src/tests/multihost/ipa/add-groups.ps1 Missing new line at the eof: src/tests/multihost/ipa/nestedgroups.csv ``` --- src/tests/multihost/ipa/add-groups.ps1 | 3 ++- src/tests/multihost/ipa/nestedgroups.csv | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/tests/multihost/ipa/add-groups.ps1 b/src/tests/multihost/ipa/add-groups.ps1 index 45c46afbde..9ca627f6a1 100644 --- a/src/tests/multihost/ipa/add-groups.ps1 +++ b/src/tests/multihost/ipa/add-groups.ps1 @@ -65,4 +65,5 @@ foreach ($nestedgroup in $nestedgroups) { Write-Output "Could not add $($group.GroupName) as a member to $($nestedgroup.NestedGroupName)" } } -} \ No newline at end of file +} + diff --git a/src/tests/multihost/ipa/nestedgroups.csv b/src/tests/multihost/ipa/nestedgroups.csv index 9c8ed7138d..151ec93c9b 100644 --- a/src/tests/multihost/ipa/nestedgroups.csv +++ b/src/tests/multihost/ipa/nestedgroups.csv @@ -18,4 +18,5 @@ nested_group16 nested_group17 nested_group18 nested_group19 -nested_group20 \ No newline at end of file +nested_group20 +
_______________________________________________ sssd-devel mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/[email protected] Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
