tests: actually use bzip for test tarball

I inadvertently gzipped it last night. That in itself doesn't cause any
tests to fail because the download strategy code is robust, but it's
fixed here anyway to be consistent. Basically, I'm dumb.

I also took the opportunity to remove the other resource fork file, so
the tarball is clean.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2011-09-02 11:43:49 -05:00
parent 74ee65466c
commit eb52b97a1e
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ class ChecksumTests < Test::Unit::TestCase
def test_md5
valid_md5 = Class.new(TestBall) do
@md5='a04e0a201dcf2e5758ad351f7eea3ddc'
@md5='060844753f2a3b36ecfc3192d307dab2'
end
good_checksum valid_md5
@ -36,7 +36,7 @@ class ChecksumTests < Test::Unit::TestCase
def test_sha1
valid_sha1 = Class.new(TestBall) do
@sha1='027afeac65cfb27c15fc372122e6b2be2c14daba'
@sha1='482e737739d946b7c8cbaf127d9ee9c148b999f5'
end
good_checksum valid_sha1
@ -52,7 +52,7 @@ class ChecksumTests < Test::Unit::TestCase
def test_sha256
valid_sha256 = Class.new(TestBall) do
@sha256='b537438cdd7519dc645d034d7e01f0bcdf908758901f26550e6bf65b496c4474'
@sha256='1dfb13ce0f6143fe675b525fc9e168adb2215c5d5965c9f57306bb993170914f'
end
good_checksum valid_sha256