Skip to content

Commit 0a722ac

Browse files
committedOct 11, 2014
Force ordering in Kernel#require_tree spec
1 parent 57d77fb commit 0a722ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎spec/opal/core/kernel/require_tree_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
it 'loads all the files in a directory' do
33
$ScratchPad = []
44
require_tree '../fixtures/require_tree_files'
5-
$ScratchPad.should == ['file 1', 'file 2', 'file 3', 'file 4', 'file 5']
5+
$ScratchPad.sort.should == ['file 1', 'file 2', 'file 3', 'file 4', 'file 5']
66
end
77
end

0 commit comments

Comments
 (0)
Please sign in to comment.