Skip to content

Commit ef396ee

Browse files
committed
Use better names
1 parent b470db7 commit ef396ee

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tests/test_toolargparse.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
outputs: []
116116
"""
117117

118-
script_g = """
118+
script_long = """
119119
#!/usr/bin/env cwl-runner
120120
121121
cwlVersion: v1.0
@@ -129,7 +129,7 @@
129129
outputs: []
130130
"""
131131

132-
script_h = """
132+
script_float = """
133133
#!/usr/bin/env cwl-runner
134134
135135
cwlVersion: v1.0
@@ -143,7 +143,7 @@
143143
outputs: []
144144
"""
145145

146-
script_i = """
146+
script_double = """
147147
#!/usr/bin/env cwl-runner
148148
149149
cwlVersion: v1.0
@@ -177,28 +177,28 @@
177177
lambda x: [x, "--foo", "http://example.com"],
178178
),
179179
(
180-
"foo with f",
181-
script_f,
180+
"foo with int",
181+
script_int,
182182
lambda x: [x, "--foo", "1", "--foo", "2"],
183183
),
184184
(
185-
"foo with g for long value (large number)",
186-
script_g,
185+
"foo with long for large value",
186+
script_long,
187187
lambda x: [x, "--foo", str(2**31 + 10)],
188188
),
189189
(
190-
"foo with g for long value (small number)",
191-
script_g,
190+
"foo with long for small value",
191+
script_long,
192192
lambda x: [x, "--foo", str(-1 * (2**31) - 10)],
193193
),
194194
(
195-
"foo with h",
196-
script_h,
195+
"foo with float",
196+
script_float,
197197
lambda x: [x, "--foo", "1.2", "--foo", "3.4"],
198198
),
199199
(
200-
"foo with i",
201-
script_i,
200+
"foo with double",
201+
script_double,
202202
lambda x: [x, "--foo", "1.2", "--foo", "3.4"],
203203
),
204204
]

0 commit comments

Comments
 (0)