Use settings.TEST_SDK instead in place of explicit version numbers in some tests that have been failing since SDK 1.13 was added to FlightDeck

This commit is contained in:
KWierso 2013-03-28 15:31:30 -07:00 коммит произвёл Wes Kocher
Родитель 8acf5b3553
Коммит ac22138d73
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -523,7 +523,7 @@ class PackageRevisionTest(TestCase):
assert os.path.isfile(self.zip_file)
def test_create_package_with_no_libs_in_sdk(self):
sdk = SDK.objects.create(version='1.12', dir='addon-sdk-1.12')
sdk = SDK.objects.create(version=settings.LOWEST_APPROVED_SDK, dir=settings.TEST_SDK)
package = Package.objects.create(author=self.author, type='a')
eq_(package.latest.sdk.id, sdk.id)

Просмотреть файл

@ -490,8 +490,8 @@ require('b');
assert not os.path.isfile('%s.xpi' % self.target_basename)
assert os.path.exists('%s.json' % self.target_basename)
def test_building_xpi_with_1_12(self):
sdk = SDK.objects.create(version='1.12', dir='addon-sdk-1.12')
def test_building_xpi(self):
sdk = SDK.objects.create(version=settings.LOWEST_APPROVED_SDK, dir=settings.TEST_SDK)
package = Package.objects.create(author=self.author, type='a')
tstart = time.time()