Skip to content

Commit

Permalink
step 18
Browse files Browse the repository at this point in the history
  • Loading branch information
bleything committed Jan 20, 2011
1 parent 57b0cae commit 911e397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koans/about_arrays.rb
Expand Up @@ -15,10 +15,10 @@ def test_array_literals
assert_equal [1], array

array[1] = 2
assert_equal [1, __], array
assert_equal [1, 2], array

array << 333
assert_equal __, array
assert_equal [1, 2, 333], array
end

def test_accessing_array_elements
Expand Down

0 comments on commit 911e397

Please sign in to comment.