Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename EventsInterface to EventInterface #2792

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion Ref/SignalGen/SignalGen.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module Ref {
# ----------------------------------------------------------------------
# Interfaces
# ----------------------------------------------------------------------
include "../../Fw/Interfaces/EventsInterface.fppi"
include "../../Fw/Interfaces/EventInterface.fppi"
include "../../Fw/Interfaces/CommandInterface.fppi"
include "../../Fw/Interfaces/ChannelInterface.fppi"

Expand Down
2 changes: 1 addition & 1 deletion cmake/test/src/test_ref_shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_ref_module_info(REF_BUILD):
"Telemetry.fppi",
"CommandInterface.fppi",
"ChannelInterface.fppi",
"EventsInterface.fppi",
"EventInterface.fppi",
]
actual_ac = [Path(source).name for source in ac_sources]
assert sorted(expected_ac) == sorted(
Expand Down
2 changes: 1 addition & 1 deletion cmake/test/src/test_unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_unittest_module_ut_info(UT_BUILD):
"Telemetry.fppi",
"CommandInterface.fppi",
"ChannelInterface.fppi",
"EventsInterface.fppi",
"EventInterface.fppi",
]
actual_ac = [Path(source).name for source in ac_sources]
assert sorted(expected_ac) == sorted(
Expand Down
Loading