From c26b377ab3455a2c5b90ec0fa34fce11b271bf72 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 16 Jul 2022 08:33:05 -0700 Subject: more decoupling editor tests from App --- text_tests.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text_tests.lua b/text_tests.lua index c11f396..d74eb98 100644 --- a/text_tests.lua +++ b/text_tests.lua @@ -535,7 +535,7 @@ function test_edit_with_shift_key_deletes_selection() -- mimic precise keypresses for a capital letter App.fake_key_press('lshift') edit.keychord_pressed(Editor_state, 'd', 'd') - App.textinput('D') + edit.textinput(Editor_state, 'D') edit.key_released(Editor_state, 'd') App.fake_key_release('lshift') -- selected text is deleted and replaced with the key -- cgit 1.4.1-2-gfad0 commit Profanity fork with TTY improvementsdanisanti <danisanti@tilde.institute>
about summary refs log tree commit diff stats
path: root/themes/joker
blob: db5e6d54b9b8f63a70214611189ce0cc74dd9b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77