Skip to content

Commit

Permalink
list-ops: change wording of test name (#90)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
glennj authored Mar 10, 2020
1 parent 72ca08e commit 60577cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exercises/list-ops/.meta/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0
2.4.1
4 changes: 2 additions & 2 deletions exercises/list-ops/list-ops.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env tclsh
set version 2.4.0
set version 2.4.1
package require tcltest
namespace import ::tcltest::*
source "list-ops.tcl"
Expand Down Expand Up @@ -33,7 +33,7 @@ if {$::argv0 eq [info script]} {

set appendCases {
list-ops-1.1 "append empty lists" {} {} {}
list-ops-1.1 "append empty list to list" {} {1 2 3 4} {1 2 3 4}
list-ops-1.1 "append list to empty list" {} {1 2 3 4} {1 2 3 4}
list-ops-1.1 "append non-empty lists" {1 2} {2 3 4 5} {1 2 2 3 4 5}
}

Expand Down

0 comments on commit 60577cd

Please sign in to comment.