From f71cacc4caf51098eec6a517d8237efbe4a72fdc Mon Sep 17 00:00:00 2001 From: Jun Hiroe Date: Fri, 2 Aug 2013 00:28:37 +0900 Subject: I fix order of actual and expect test value in indexerror.rb. --- test/t/indexerror.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/t') diff --git a/test/t/indexerror.rb b/test/t/indexerror.rb index b71766c95..ea008a227 100644 --- a/test/t/indexerror.rb +++ b/test/t/indexerror.rb @@ -2,9 +2,9 @@ # IndexError ISO Test assert('IndexError', '15.2.33') do - assert_equal IndexError.class, Class + assert_equal Class, IndexError.class end assert('IndexError superclass', '15.2.33.2') do - assert_equal IndexError.superclass, StandardError + assert_equal StandardError, IndexError.superclass end -- cgit v1.2.3