Skip to content

Commit

Permalink
Merge pull request #5293 from NREL/CSharp-Alfalfa-Test-Fix
Browse files Browse the repository at this point in the history
Fix namesapce for types in GTest
  • Loading branch information
jmarrec authored Nov 7, 2024
2 parents bbc0a94 + d865b87 commit cab6ef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/alfalfa/test/AlfalfaJSON_GTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ class InputComponent : public AlfalfaComponentBase
return AlfalfaComponentCapability::Input;
}

openstudio::alfalfa::AlfalfaComponentType type() const override {
return openstudio::alfalfa::AlfalfaComponentType::Constant;
AlfalfaComponentType type() const override {
return AlfalfaComponentType::Constant;
}

std::unique_ptr<AlfalfaComponentBase> clone() const override {
Expand Down

0 comments on commit cab6ef6

Please sign in to comment.