Commit 6a1c3d9b authored by Jonny007-MKD's avatar Jonny007-MKD
Browse files

Removed some newlines

parent c40f55a2
...@@ -1242,22 +1242,19 @@ private: ...@@ -1242,22 +1242,19 @@ private:
} \ } \
catch (const std::exception& e) { \ catch (const std::exception& e) { \
if (!gtest_caught_expected) { \ if (!gtest_caught_expected) { \
message.set( \ message.set("it throws a different type " \
"it throws a different type " \
"with message: " + std::string(e.what())); \ "with message: " + std::string(e.what())); \
goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
} \ } \
} \ } \
catch (...) { \ catch (...) { \
if (!gtest_caught_expected) { \ if (!gtest_caught_expected) { \
message.set( \ message.set("it throws a different type."); \
"it throws a different type."); \
goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
} \ } \
} \ } \
if (!gtest_caught_expected) { \ if (!gtest_caught_expected) { \
message.set( \ message.set("it throws nothing."); \
"it throws nothing."); \
goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
} \ } \
} else \ } else \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment