diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-29 08:03:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-29 08:03:47 +0200 |
commit | 55198f5c288d98526f7db556ac5ffd002a51df97 (patch) | |
tree | 3d1b0dcf3fe7d9d67a9ca549682e09dd5c9948e9 | |
parent | cbdc33bcf73090962e60c1cf5ee50a21b29e4bad (diff) | |
parent | bdd7b558b6a326458477532fa00517103c9b835b (diff) |
Merge pull request #60610 from nathanfranke/remove-escapes-in-gdscript-tests
remove escapes in gdscript test output
-rw-r--r-- | tests/test_macros.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/test_macros.h b/tests/test_macros.h index 6e7a84bfb2..9cb9624d52 100644 --- a/tests/test_macros.h +++ b/tests/test_macros.h @@ -63,22 +63,22 @@ // Stringify all `Variant` compatible types for doctest output by default. // https://github.com/onqtam/doctest/blob/master/doc/markdown/stringification.md -#define DOCTEST_STRINGIFY_VARIANT(m_type) \ - template <> \ - struct doctest::StringMaker<m_type> { \ - static doctest::String convert(const m_type &p_val) { \ - const Variant val = p_val; \ - return val.get_construct_string().utf8().get_data(); \ - } \ +#define DOCTEST_STRINGIFY_VARIANT(m_type) \ + template <> \ + struct doctest::StringMaker<m_type> { \ + static doctest::String convert(const m_type &p_val) { \ + const Variant val = p_val; \ + return val.operator ::String().utf8().get_data(); \ + } \ }; -#define DOCTEST_STRINGIFY_VARIANT_POINTER(m_type) \ - template <> \ - struct doctest::StringMaker<m_type> { \ - static doctest::String convert(const m_type *p_val) { \ - const Variant val = p_val; \ - return val.get_construct_string().utf8().get_data(); \ - } \ +#define DOCTEST_STRINGIFY_VARIANT_POINTER(m_type) \ + template <> \ + struct doctest::StringMaker<m_type> { \ + static doctest::String convert(const m_type *p_val) { \ + const Variant val = p_val; \ + return val.operator ::String().utf8().get_data(); \ + } \ }; DOCTEST_STRINGIFY_VARIANT(Variant); |