Fixed #21929 - Fixed test regression on Windows.

Thanks Michael Manfre for the report.
This commit is contained in:
Carl Meyer 2014-02-04 13:14:41 -07:00
parent 343dfff133
commit 2b27224180
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class EggLoaderTest(TestCase):
return self.module._resources[path].read()
def _fn(self, base, resource_name):
return resource_name
return os.path.normcase(resource_name)
pkg_resources._provider_factories[MockLoader] = MockProvider