Skip to content

Commit

Permalink
Fix namesapce for types in GTest
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky committed Nov 6, 2024
1 parent bbc0a94 commit d865b87
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 d865b87

Please sign in to comment.