Skip to content

Commit

Permalink
remove item
Browse files Browse the repository at this point in the history
  • Loading branch information
kemsky committed Nov 9, 2015
1 parent ab0490e commit d129083
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testSrc/com/kemsky/TestStream.as
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ package com.kemsky
{
var s:Stream = $(1, 2, 3);
s.removeItem(0);
assertEquals(s.length, 2);
s.removeItem(1);
assertEquals(s.length, 1);
assertEquals(s[0], 2);
assertEquals(s[1], 3);
}

[Test]
Expand Down

0 comments on commit d129083

Please sign in to comment.