From 37160073915eb0e836b1052993fcbdc04b2555b6 Mon Sep 17 00:00:00 2001 From: HomieOmie <93492271+HomieOmie@users.noreply.github.com> Date: Sat, 6 May 2023 19:41:36 -0400 Subject: [PATCH] Update and rename my_test.py to test_issue10863.py --- testing/examples/my_test.py | 22 ---------------------- testing/examples/test_issue10863.py | 6 ++++++ 2 files changed, 6 insertions(+), 22 deletions(-) delete mode 100644 testing/examples/my_test.py create mode 100644 testing/examples/test_issue10863.py diff --git a/testing/examples/my_test.py b/testing/examples/my_test.py deleted file mode 100644 index 3c6edde0e..000000000 --- a/testing/examples/my_test.py +++ /dev/null @@ -1,22 +0,0 @@ -def test_(): - m = [ - "This is some dummy test which shows the strange way in which Pycharm" - " displays the full diff." - ] - assert m == [] - - -def test2_(): - m = [ - "This is another check" - " This line and the line above should be fine" - "Same with this line" - "But we should not see the '- ,' appear" - "But rather we should see a '- []' appear" - ] - assert [] == m - - -# def test3_(): -# m = ["This is some dummy test which shows the strange way in which Pycharm"] -# assert m == [] diff --git a/testing/examples/test_issue10863.py b/testing/examples/test_issue10863.py new file mode 100644 index 000000000..4cd697be7 --- /dev/null +++ b/testing/examples/test_issue10863.py @@ -0,0 +1,6 @@ +def test_(): + m = [ + "This is some dummy test which shows the strange way in which Pycharm" + " displays the full diff." + ] + assert m == []