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")
 
diff --git a/static/redfish/v1/$metadata/index.xml b/static/redfish/v1/$metadata/index.xml
index b0972d9..36901d0 100644
--- a/static/redfish/v1/$metadata/index.xml
+++ b/static/redfish/v1/$metadata/index.xml
@@ -3006,7 +3006,7 @@
         <edmx:Include Namespace="OemVirtualMedia.v1_0_0"/>
     </edmx:Reference>
     <edmx:Reference Uri="/redfish/v1/schema/OpenBMCAccountService_v1.xml">
-        <edmx:Include Namespace="OemAccountService"/>
-        <edmx:Include Namespace="OemAccountService.v1_0_0"/>
+        <edmx:Include Namespace="OpenBMCAccountService"/>
+        <edmx:Include Namespace="OpenBMCAccountService.v1_0_0"/>
     </edmx:Reference>
 </edmx:Edmx>