Add missing test path for manifest during WPT syncing.

This commit is contained in:
Josh Matthews 2020-07-10 10:40:52 -04:00 committed by GitHub
parent fb243a32f0
commit aec3ce801b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,7 @@ class LoadManifest(Step):
def create(self, state):
from manifest import manifest
state.manifest_path = os.path.join(state.metadata_path, "MANIFEST.json")
state.test_manifest = manifest.Manifest("/")
state.test_manifest = manifest.Manifest(state.sync["path"], "/")
class UpdateManifest(Step):