Skip to content

Commit a2532a8

Browse files
authored
Merge pull request #7894 from tausbn/python-normalise-prefixes
Python: Normalise string prefixes
2 parents efed21b + be323ba commit a2532a8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python/ql/test/2/library-tests/locations/general/Prefix.expected

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| 66 | \nSingle quotes string | ''' |
1010
| 69 | \nDouble-quotes\nstring | """ |
1111
| 73 | \nBytes\n | r''' |
12-
| 77 | \nRaw\nUnicode\n | U""" |
12+
| 77 | \nRaw\nUnicode\n | u""" |
1313
| 101 | | " |
1414
| 101 | Hello | " |
15-
| 101 | world | " |
15+
| 101 | world | " |

python/ql/test/3/library-tests/locations/general/Prefix.expected

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| 66 | \nSingle quotes string | ''' |
77
| 69 | \nDouble-quotes\nstring | """ |
88
| 73 | \nBytes\n | r''' |
9-
| 77 | \nRaw\nUnicode\n | U""" |
9+
| 77 | \nRaw\nUnicode\n | u""" |
1010
| 101 | | " |
1111
| 101 | Hello | " |
12-
| 101 | world | " |
12+
| 101 | world | " |

0 commit comments

Comments
 (0)