Fix missing namespace in test_utils.

PiperOrigin-RevId: 773354912
Change-Id: Ic19ba6f1ed4c3ae37a9c143f64da8b7ddc3b3e86
This commit is contained in:
Sam Haves
2025-06-19 08:27:55 -07:00
committed by Copybara-Service
parent 35665c5cb3
commit f1b3897ea7
+2 -1
View File
@@ -97,7 +97,8 @@ void ExpectAllAuthoredAttributesMatchSchemaTypes(const pxr::UsdPrim& prim) {
for (const pxr::SdfPropertySpecHandle& spec : propStack) {
// We only care about attribute specs.
if (auto attrSpec = TfDynamic_cast<pxr::SdfAttributeSpecHandle>(spec)) {
if (auto attrSpec =
pxr::TfDynamic_cast<pxr::SdfAttributeSpecHandle>(spec)) {
// 3. Check if this spec has an authored `typeName`.
if (attrSpec->HasField(pxr::SdfFieldKeys->TypeName)) {
const pxr::TfToken authoredTypeName =