From 58ce530fb62104fd9dfbe543d708a609f9740b21 Mon Sep 17 00:00:00 2001 From: Anton Agestam Date: Mon, 12 Aug 2019 16:12:15 +0200 Subject: [PATCH] fix failing test from #140 --- collectfast/tests/test_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collectfast/tests/test_command.py b/collectfast/tests/test_command.py index b7f2621..ce95505 100644 --- a/collectfast/tests/test_command.py +++ b/collectfast/tests/test_command.py @@ -47,7 +47,7 @@ def test_warn_preload_metadata(case): with warnings.catch_warnings(record=True) as w: warnings.simplefilter("always") call_collectstatic() - case.assertIn('AWS_PRELOAD_METADATA', str(w[0].message)) + case.assertIn('preload_metadata', str(w[0].message)) @test