Skip to content

Commit 6ca5fac

Browse files
authored
Fix CI (#422)
* Fix CI * Fix test
1 parent caacfc7 commit 6ca5fac

3 files changed

Lines changed: 22 additions & 22 deletions

File tree

src/pathpicker/screen_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def signal_handler(_sig: int, _frame: FrameType) -> None:
3535
X_MODE = "X_MODE"
3636

3737
# characters for quick select mode label(excluded reserved chars: A,F)
38-
LABELS = "BCDEGHIJKLMNOPQRSTUVWXYZ1234567890~!@#$%^&*()_+<>?{}|;'"
38+
LABELS = "BCDEGHIJKLMNOPQRSTUVWXYZ1234567890~!@#$%^&*()_+<>?{}|;'"
3939

4040

4141
# options for displayed to the user at the bottom of the screen
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,32 @@
1-
A README.md | 8 ++++-
1+
B README.md | 8 ++++-
22
*********
3-
B fpp | 6 ++--
3+
C fpp | 6 ++--
44

5-
C src/__tests__/__init__.py | 0
5+
D src/__tests__/__init__.py | 0
66
_________________________
7-
D src/__tests__/cursesForTest.py | 45 ++++++++++++++++++++++++++++
7+
E src/__tests__/cursesForTest.py | 45 ++++++++++++++++++++++++++++
88
______________________________
9-
E |===>src/__tests__/initTest.py | 28 ++++++++++++++++++
9+
G |===>src/__tests__/initTest.py | 28 ++++++++++++++++++
1010
||||||||||||||||||||||||||||||
11-
F src/__tests__/screenForTest.py | 67 ++++++++++++++++++++++++++++++++++++++
11+
H src/__tests__/screenForTest.py | 67 ++++++++++++++++++++++++++++++++++++++
1212
______________________________
13-
G src/charCodeMapping.py | 20 +++++++++++++
13+
I src/charCodeMapping.py | 20 +++++++++++++
1414
______________________
15-
H |===>src/choose.py | 15 ++++++++--
15+
J |===>src/choose.py | 15 ++++++++--
1616
||||||||||||||||||
17-
I src/colorPrinter.py | 21 ++++++++-----
17+
K src/colorPrinter.py | 21 ++++++++-----
1818
___________________
19-
J src/cursesAPI.py | 40 +++++++++++++++++++++++++
19+
L src/cursesAPI.py | 40 +++++++++++++++++++++++++
2020
________________
21-
K src/format.py | 4 +--
21+
M src/format.py | 4 +--
2222
_____________
23-
L src/processInput.py | 7 +++++
23+
N src/processInput.py | 7 +++++
2424
___________________
25-
M src/screenControl.py | 28 +++++++-----------
25+
O src/screenControl.py | 28 +++++++-----------
2626
____________________
27-
N src/screenFlags.py | 34 +++++++++++++++++++++
27+
P src/screenFlags.py | 34 +++++++++++++++++++++
2828
__________________
29-
O 14 files changed, 290 insertions(+), 33 deletions(-)
30-
31-
P
32-
33-
Q
29+
Q 14 files changed, 290 insertions(+), 33 deletions(-)
3430

3531
R
3632

@@ -54,7 +50,11 @@ Z
5450

5551
2
5652

57-
3___________________________________________________________________________
53+
3
54+
55+
4
56+
57+
5___________________________________________________________________________
5858

5959
[f|A] selection, [down|j|up|k|space|b] navigation, [enter] open, [x] quick
6060

src/tests/test_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def __init__(
147147
"xModeWithSelect",
148148
input_file="gitDiff.txt",
149149
with_attributes=True,
150-
inputs=["x", "E", "H"],
150+
inputs=["x", "G", "J"],
151151
),
152152
ScreenTestCase(
153153
"gitAbbreviatedFiles",

0 commit comments

Comments
 (0)