Skip to content
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

src/rsu-connector: add status iothub status file output #8

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rsu-connector/unittest: add missing newline at end of file
When saving the file with a linux editor the missing new line is added.
The git programme, after saving the file, always shows
'No newline at end of file' for a `git diff`.

To make the editor happy, the commit adds the missing new line at the
end of file to every file where it is missing.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
feckert committed Dec 14, 2023
commit 918fd4b19ce6f6364097e610cc81a803cac1699a
2 changes: 1 addition & 1 deletion src/rsu-connector/unittest/CustomHSMTest.cpp
Original file line number Diff line number Diff line change
@@ -249,4 +249,4 @@ ih2t7Bs4FNzuO/r7BxrjPJmFzD+cDvUDBNF+

)";
CHECK( !hsm->setCertificate( std::vector<char>( expectedCert.begin(), expectedCert.end() ) ) );
}
}
2 changes: 1 addition & 1 deletion src/rsu-connector/unittest/MockPortForwardingActor.h
Original file line number Diff line number Diff line change
@@ -54,4 +54,4 @@ struct MockPortForwardingActor : public Command::IPortForwardingActor
ReloadFirewallCalled = true;
return ReloadFirewallReturn;
}
};
};
2 changes: 1 addition & 1 deletion src/rsu-connector/unittest/MockVPNActor.h
Original file line number Diff line number Diff line change
@@ -54,4 +54,4 @@ struct MockVPNActor : public Command::IVPNActor
config = GetVPNResponse;
return GetVPNConfigurationsReturn;
}
};
};