Update and rename my_test.py to test_issue10863.py

This commit is contained in:
HomieOmie 2023-05-06 19:41:36 -04:00 committed by GitHub
parent ac3cb751a3
commit 3716007391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 22 deletions

View File

@ -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 == []

View File

@ -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 == []