Skip to content

Commit

Permalink
missed renamed in 32-bit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nikodemus committed Jul 12, 2024
1 parent c360e3c commit 2b51d86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/32bit_unit_tests/mocks/mock_display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class MockDisplay : public deluge::hid::Display {
int32_t scrollPos = 0, uint8_t* blinkAddition = NULL, bool justReplaceBottomLayer = false){};

void displayPopup(char const* newText, int8_t numFlashes = 3, bool alignRight = false, uint8_t = 255, int32_t = 1,
DisplayPopupType type = DisplayPopupType::GENERAL){};
PopupType type = PopupType::GENERAL){};

void popupText(char const* text, DisplayPopupType type = DisplayPopupType::GENERAL){};
void popupTextTemporary(char const* text, DisplayPopupType type = DisplayPopupType::GENERAL){};
void popupText(char const* text, PopupType type = PopupType::GENERAL){};
void popupTextTemporary(char const* text, PopupType type = PopupType::GENERAL){};

void setNextTransitionDirection(int8_t thisDirection){};

Expand All @@ -36,7 +36,7 @@ class MockDisplay : public deluge::hid::Display {
void removeLoadingAnimation(){};

bool hasPopup() { return false; };
bool hasPopupOfType(DisplayPopupType type) { return false; };
bool hasPopupOfType(PopupType type) { return false; };

void consoleText(char const* text){};

Expand Down

0 comments on commit 2b51d86

Please sign in to comment.