From 4461106fe91c020ac7253cd2791107058f94fcdb Mon Sep 17 00:00:00 2001 From: seleznevae Date: Sat, 10 Aug 2019 11:57:47 +0300 Subject: [PATCH] [F] Fixed cpp regress test --- ChangeLog.md | 4 ++++ tests/bb_tests_cpp/test_table_basic.cpp | 9 ++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 8e69998..3e102f8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ ## v0.1.6 +### Internal + +- Removed blank lines from `PLAIN_STYLE` and `SIMPLE_STYLE`. + ### Bug fixes - Changed specific style reset tags to universal reset style tag. diff --git a/tests/bb_tests_cpp/test_table_basic.cpp b/tests/bb_tests_cpp/test_table_basic.cpp index bd14b47..1b740e1 100644 --- a/tests/bb_tests_cpp/test_table_basic.cpp +++ b/tests/bb_tests_cpp/test_table_basic.cpp @@ -19,11 +19,10 @@ void test_cpp_bug_fixes(void) std::string table_str = table.to_string(); std::string table_str_etalon = - " ------- \n" - " 1 2 \n" - " ------- \n" - " 3 4 \n" - " \n"; + "-------\n" + " 1 2 \n" + "-------\n" + " 3 4 \n"; assert_string_equal(table_str, table_str_etalon); } }