Fix typo in test_arch_for_command

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-03-09 11:49:34 -06:00
parent 981605d199
commit fe25e4f7ec

View File

@ -20,7 +20,7 @@ class UtilTests < Test::Unit::TestCase
if `sw_vers -productVersion` =~ /10\.(\d+)/ and $1.to_i >= 7 if `sw_vers -productVersion` =~ /10\.(\d+)/ and $1.to_i >= 7
assert_equal 2, arches.length assert_equal 2, arches.length
assert arches.include?(:x86_64) assert arches.include?(:x86_64)
elsif `sw_vers -productVersion` =~ /10\.(\d+)/ and $1.to_i = 6 elsif `sw_vers -productVersion` =~ /10\.(\d+)/ and $1.to_i == 6
assert_equal 3, arches.length assert_equal 3, arches.length
assert arches.include?(:x86_64) assert arches.include?(:x86_64)
assert arches.include?(:ppc7400) assert arches.include?(:ppc7400)