Skip to content

Commit 4d6ad32

Browse files
committed
Python: Update test expectations.
As ar as I can tell, all these are improvements
1 parent b56545b commit 4d6ad32

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

python/ql/test/library-tests/regex/Characters.expected

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@
110110
| ax{3,} | 5 | 6 |
111111
| ax{3} | 0 | 1 |
112112
| ax{3} | 1 | 2 |
113-
| ax{3} | 2 | 3 |
114113
| ax{3} | 3 | 4 |
115114
| ax{3} | 4 | 5 |
116115
| ax{,3} | 0 | 1 |

python/ql/test/library-tests/regex/FirstLast.expected

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@
8484
| ax{3,} | last | 1 | 6 |
8585
| ax{3,} | last | 5 | 6 |
8686
| ax{3} | first | 0 | 1 |
87+
| ax{3} | last | 1 | 2 |
88+
| ax{3} | last | 1 | 5 |
8789
| ax{3} | last | 4 | 5 |
8890
| ax{,3} | first | 0 | 1 |
8991
| ax{,3} | last | 0 | 1 |

python/ql/test/library-tests/regex/Qualified.expected

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@
1111
| ^[A-Z_]+$(?<!not-this) | 1 | 8 | false |
1212
| ax{01,3} | 1 | 8 | false |
1313
| ax{3,} | 1 | 6 | false |
14+
| ax{3} | 1 | 5 | false |
1415
| ax{,3} | 1 | 6 | true |

python/ql/test/library-tests/regex/Regex.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@
207207
| ax{3,} | sequence | 0 | 6 |
208208
| ax{3} | char | 0 | 1 |
209209
| ax{3} | char | 1 | 2 |
210-
| ax{3} | char | 2 | 3 |
211210
| ax{3} | char | 3 | 4 |
212211
| ax{3} | char | 4 | 5 |
212+
| ax{3} | qualified | 1 | 5 |
213213
| ax{3} | sequence | 0 | 5 |
214214
| ax{,3} | char | 0 | 1 |
215215
| ax{,3} | char | 1 | 2 |

0 commit comments

Comments
 (0)