Skip to content

Commit 60577cd

Browse files
authored
list-ops: change wording of test name (#90)
Per exercism/problem-specifications#1609, this change makes the ordering of inputs implied by the description match the inputs as they are actually supplied. This bumps the version from 2.4.0 to 2.4.1. This change reflects exercism/problem-specifications#1611
1 parent 72ca08e commit 60577cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exercises/list-ops/.meta/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.4.1

exercises/list-ops/list-ops.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env tclsh
2-
set version 2.4.0
2+
set version 2.4.1
33
package require tcltest
44
namespace import ::tcltest::*
55
source "list-ops.tcl"
@@ -33,7 +33,7 @@ if {$::argv0 eq [info script]} {
3333

3434
set appendCases {
3535
list-ops-1.1 "append empty lists" {} {} {}
36-
list-ops-1.1 "append empty list to list" {} {1 2 3 4} {1 2 3 4}
36+
list-ops-1.1 "append list to empty list" {} {1 2 3 4} {1 2 3 4}
3737
list-ops-1.1 "append non-empty lists" {1 2} {2 3 4 5} {1 2 2 3 4 5}
3838
}
3939

0 commit comments

Comments
 (0)