Skip to content

Commit

Permalink
Issue #698 changed method signature of createParamDef in unit test to…
Browse files Browse the repository at this point in the history
… new variant. Test remained intact.
  • Loading branch information
FJThiel committed Sep 24, 2024
1 parent 6ca6ed3 commit f338b25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ TEST(RepoMetaVariantConverterRevitTest, Int32AsBoolTest) {
OdBm::BuiltInParameter::Enum param;

// Configure paramDef
paramDef = OdBmParamDefHelper::createParamDef(OdBmSpecTypeId::Boolean::kYesNo, OdBm::StorageType::Integer);
paramDef = OdBmParamDefHelper::createParamDef(OdBmSpecTypeId::Boolean::kYesNo);

// Create data
OdInt32 data = 0;
Expand Down Expand Up @@ -216,7 +216,7 @@ TEST(RepoMetaVariantConverterRevitTest, Int32asIntTest) {
OdTfVariant variant = OdTfVariant(data);

// Configure paramDef (to anything but kYesNo)
paramDef = OdBmParamDefHelper::createParamDef(OdBmSpecTypeId::Int::kInteger, OdBm::StorageType::Integer);
paramDef = OdBmParamDefHelper::createParamDef(OdBmSpecTypeId::Int::kInteger);


// Convert
Expand Down

0 comments on commit f338b25

Please sign in to comment.