Fix bad namespaces
This was missed by me; At the same time as we were resolving the
redfish-service-validator failure[1], I was trying to fix this. So in
the result I saw:
ERROR - Validation has failed: 2 problems found
Which I thought was the existing false-positive, but turns out was
hiding the namespace issue.
Mea Culpa.
[1]: https://github.com/DMTF/Redfish-Service-Validator/issues/533
Tested: Redfish service validator actually passes.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I51de9d508539756394ead1bca437ca37b61f5e40
diff --git a/scripts/update_schemas.py b/scripts/update_schemas.py
index f93082c..022396d 100755
--- a/scripts/update_schemas.py
+++ b/scripts/update_schemas.py
@@ -348,10 +348,10 @@
'/redfish/v1/schema/OpenBMCAccountService_v1.xml">\n'
)
metadata_index.write(
- ' <edmx:Include Namespace="OemAccountService"/>\n'
+ ' <edmx:Include Namespace="OpenBMCAccountService"/>\n'
)
metadata_index.write(
- ' <edmx:Include Namespace="OemAccountService.v1_0_0"/>\n'
+ ' <edmx:Include Namespace="OpenBMCAccountService.v1_0_0"/>\n'
)
metadata_index.write(" </edmx:Reference>\n")