test/telemetry: fix typo at beginning of line

Message ID 20201104172203.603048-1-ciara.power@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series test/telemetry: fix typo at beginning of line |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/travis-robot success Travis build: passed

Commit Message

Power, Ciara Nov. 4, 2020, 5:22 p.m. UTC
  A "+" symbol was incorrectly placed at the beginning of a line,
this is now removed.

Fixes: 52af6ccb2b39 ("telemetry: add utility functions for creating JSON")
Cc: bruce.richardson@intel.com
Cc: stable@dpdk.org

Signed-off-by: Ciara Power <ciara.power@intel.com>
---
 app/test/test_telemetry_json.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Thomas Monjalon Nov. 4, 2020, 9:04 p.m. UTC | #1
04/11/2020 18:22, Ciara Power:
> A "+" symbol was incorrectly placed at the beginning of a line,
> this is now removed.
> 
> Fixes: 52af6ccb2b39 ("telemetry: add utility functions for creating JSON")
> Cc: bruce.richardson@intel.com
> Cc: stable@dpdk.org
> 
> Signed-off-by: Ciara Power <ciara.power@intel.com>

Applied, thanks
  

Patch

diff --git a/app/test/test_telemetry_json.c b/app/test/test_telemetry_json.c
index 90bbb3e8d9..7a91490f4c 100644
--- a/app/test/test_telemetry_json.c
+++ b/app/test/test_telemetry_json.c
@@ -128,7 +128,7 @@  test_telemetry_json(void)
 			test_overflow_array() < 0 ||
 			test_overflow_obj() < 0 ||
 			test_large_array_element() < 0 ||
-+			test_large_obj_element() < 0)
+			test_large_obj_element() < 0)
 		return -1;
 	return 0;
 }