summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-08 19:56:29 +0200
committerhut <hut@lavabit.com>2010-04-08 19:56:29 +0200
commit4537ca72633b0c60e6fd4700adb6b96c0a823c7b (patch)
tree9b632e2ef4fedea854a1e4199073584385d93647 /test
parent21da5a5ffbe325930ef2c01b016ce68c8cff6eca (diff)
downloadranger-4537ca72633b0c60e6fd4700adb6b96c0a823c7b.tar.gz
tc_direction: fixed
maximum=X means that the maximum value is set to X-1.
Works for lists:
d.move(maximum=len(lst))

is this counter intuitive?
Diffstat (limited to 'test')
-rw-r--r--test/tc_direction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tc_direction.py b/test/tc_direction.py
index dd7e94ab..18f9eb4c 100644
--- a/test/tc_direction.py
+++ b/test/tc_direction.py
@@ -71,7 +71,7 @@ class TestDirections(unittest.TestCase):
 		self.assertEqual(3, d.move(direction=3))
 		self.assertEqual(5, d.move(direction=3, current=2))
 		self.assertEqual(15, d.move(direction=3, pagesize=5))
-		self.assertEqual(10, d.move(direction=3, pagesize=5, maximum=10))
+		self.assertEqual(9, d.move(direction=3, pagesize=5, maximum=10))
 		self.assertEqual(18, d.move(direction=9, override=2))
 		d2 = Direction(absolute=True)
 		self.assertEqual(5, d2.move(direction=9, override=5))
k/mu/commit/027debug.cc?h=hlt&id=ac0e9db526dc15cf91f4c45c4586ddcc19e9708c'>ac0e9db5 ^
7feea75b ^
0487a30e ^
827898fc ^
0487a30e ^

11bf6ded ^
b1299d63 ^

72c4fb2d ^






9fef16ab ^



72c4fb2d ^












a11d9c4a ^

a39df92d ^












a11d9c4a ^







a6cdf15c ^

dc1323e9 ^







272e786b ^









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
78
79
80
81
82
83
84
85
86
87
88
89
90

                                             

                                             

                                        
                                                
              
                                                         
                                                              
                                                                                                         


                                                           
                                                                   
                                                                                      
                               
                                        

       
   

        






                                                 



                                                                            












                                                                             

                                             












                                                







                                                

                                             







                                                









                                                
c96a437 ^
46b6e2a3 ^
9e608a77 ^
6ff9413c ^

9e608a77 ^
b39ceb27 ^
5a9e3a11 ^
6ff9413c ^


b39ceb27 ^
683d53ca ^

b39ceb27 ^
df0b469f ^
ccd792da ^
51530916 ^
ac0e9db5 ^
7d13531e ^



6573fe1f ^
eb3a527a ^

b5ab709c ^
51530916 ^

53172ce1 ^
17d3003d ^




53172ce1 ^











51530916 ^
f2043a73 ^
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104