Skip to content

Commit eb5244a

Browse files
committed
Renames test app that clears ignore setting
1 parent 40c615a commit eb5244a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/app/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
'BUNDLE_DIR_NAME': 'bundles/',
120120
'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats-app2.json'),
121121
},
122-
'NO_IGNORE': {
122+
'NO_IGNORE_APP': {
123123
'IGNORE': [],
124124
},
125125
}

tests/app/tests/test_webpack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_simple_and_css_extract(self):
7474

7575
def test_default_ignore_config_ignores_map_files(self):
7676
self.compile_bundles('webpack.config.sourcemaps.js')
77-
chunks = get_loader('NO_IGNORE').get_bundle('main')
77+
chunks = get_loader('NO_IGNORE_APP').get_bundle('main')
7878
has_map_files_chunks = any([".map" in chunk["name"] for chunk in chunks])
7979

8080
self.assertTrue(has_map_files_chunks)

0 commit comments

Comments
 (0)