From 8a8c42119282ef9bd62866c216cf00a99058ecc9 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Thu, 25 Apr 2019 03:23:25 -0700 Subject: 5125 --- subx/074print-int-decimal.subx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'subx') diff --git a/subx/074print-int-decimal.subx b/subx/074print-int-decimal.subx index d4617aba..86015a00 100644 --- a/subx/074print-int-decimal.subx +++ b/subx/074print-int-decimal.subx @@ -137,7 +137,7 @@ $print-int32-decimal:abort: # never gets here test-print-int32-decimal: - # check that a single-digit number converts correctly + # - check that a single-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -167,7 +167,7 @@ test-print-int32-decimal: c3/return test-print-int32-decimal-multiple-digits: - # check that a multi-digit number converts correctly + # - check that a multi-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -197,7 +197,7 @@ test-print-int32-decimal-multiple-digits: c3/return test-print-int32-decimal-negative: - # check that a negative single-digit number converts correctly + # - check that a negative single-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -253,7 +253,7 @@ test-print-int32-decimal-negative: c3/return test-print-int32-decimal-negative-multiple-digits: - # check that a multi-digit number converts correctly + # - check that a multi-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args -- cgit 1.4.1-2-gfad0 f91a48cdaab643d630e9f532af6'>commit diff stats
path: root/tests/unittests/test_cmd_pgp.c
blob: 55130dac068ff03ae7ac1a154a2898f36df5bd72 (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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119