Skip to content

Commit 09e084c

Browse files
committed
Cleanup some passing specs
1 parent 373eafd commit 09e084c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

spec/opal/filters/bugs/array.rb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,11 @@
4848
fails "Array#initialize with (array) calls #to_ary to convert the value to an array"
4949
fails "Array#initialize preserves the object's identity even when changing its value"
5050

51-
fails "Array#& tries to convert the passed argument to an Array using #to_ary"
5251
fails "Array#& determines equivalence between elements in the sense of eql?"
5352

5453
fails "Array#- removes an identical item even when its #eql? isn't reflexive"
5554
fails "Array#- doesn't remove an item with the same hash but not #eql?"
5655
fails "Array#- removes an item identified as equivalent via #hash and #eql?"
57-
fails "Array#- tries to convert the passed arguments to Arrays using #to_ary"
5856

5957
fails "Array#* raises a TypeError is the passed argument is nil"
6058
fails "Array#* converts the passed argument to a String rather than an Integer"
@@ -170,9 +168,6 @@
170168
fails "Array#sort_by! returns an Enumerator if not given a block"
171169
fails "Array#sort_by! sorts array in place by passing each element to the given block"
172170

173-
fails "Array#transpose raises a TypeError if the passed Argument does not respond to #to_ary"
174-
fails "Array#transpose tries to convert the passed argument to an Array using #to_ary"
175-
176171
fails "Array#uniq compares elements based on the value returned from the block"
177172
fails "Array#uniq compares elements with matching hash codes with #eql?"
178173
fails "Array#uniq uses eql? semantics"

0 commit comments

Comments
 (0)