diff mbox series

[ovs-dev] tests: Don't include a newline in ovs_fatal() calls.

Message ID 1518224596-77748-1-git-send-email-jpettit@ovn.org
State Accepted
Headers show
Series [ovs-dev] tests: Don't include a newline in ovs_fatal() calls. | expand

Commit Message

Justin Pettit Feb. 10, 2018, 1:03 a.m. UTC
Signed-off-by: Justin Pettit <jpettit@ovn.org>
---
 tests/test-rstp.c | 2 +-
 tests/test-stp.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Ben Pfaff Feb. 10, 2018, 1:25 a.m. UTC | #1
On Fri, Feb 09, 2018 at 05:03:16PM -0800, Justin Pettit wrote:
> Signed-off-by: Justin Pettit <jpettit@ovn.org>

Acked-by: Ben Pfaff <blp@ovn.org>
Justin Pettit Feb. 10, 2018, 6:58 a.m. UTC | #2
> On Feb 9, 2018, at 5:25 PM, Ben Pfaff <blp@ovn.org> wrote:
> 
> On Fri, Feb 09, 2018 at 05:03:16PM -0800, Justin Pettit wrote:
>> Signed-off-by: Justin Pettit <jpettit@ovn.org>
> 
> Acked-by: Ben Pfaff <blp@ovn.org>

Thanks.  I pushed this to master.

--Justin
diff mbox series

Patch

diff --git a/tests/test-rstp.c b/tests/test-rstp.c
index 7bcff83f3ab6..01aeaf847838 100644
--- a/tests/test-rstp.c
+++ b/tests/test-rstp.c
@@ -467,7 +467,7 @@  test_rstp_main(int argc, char *argv[])
     vlog_set_levels(NULL, VLF_SYSLOG, VLL_OFF);
 
     if (argc != 2) {
-        ovs_fatal(0, "usage: test-rstp INPUT.RSTP\n");
+        ovs_fatal(0, "usage: test-rstp INPUT.RSTP");
     }
     file_name = argv[1];
 
diff --git a/tests/test-stp.c b/tests/test-stp.c
index c072108c7e12..c85c99d67385 100644
--- a/tests/test-stp.c
+++ b/tests/test-stp.c
@@ -446,7 +446,7 @@  test_stp_main(int argc, char *argv[])
     vlog_set_levels(NULL, VLF_SYSLOG, VLL_OFF);
 
     if (argc != 2) {
-        ovs_fatal(0, "usage: test-stp INPUT.STP\n");
+        ovs_fatal(0, "usage: test-stp INPUT.STP");
     }
     file_name = argv[1];