|
@@ -149,12 +149,12 @@ class BitbakeLayers(OESelftestTestCase):
|
|
|
self.validate_layersjson(jsonfile)
|
|
|
|
|
|
# The revision-under-test may not necessarily be available on the remote server,
|
|
|
- # so replace it with a stable release tag.
|
|
|
+ # so replace it with a revision that has a yocto-4.0 tag.
|
|
|
import json
|
|
|
with open(jsonfile) as f:
|
|
|
data = json.load(f)
|
|
|
for s in data['sources']:
|
|
|
- data['sources'][s]['git-remote']['rev'] = 'yocto-4.0'
|
|
|
+ data['sources'][s]['git-remote']['rev'] = '00cfdde791a0176c134f31e5a09eff725e75b905'
|
|
|
with open(jsonfile, 'w') as f:
|
|
|
json.dump(data, f)
|
|
|
|