Skip to content

Commit

Permalink
Maybe?
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Aug 19, 2024
1 parent eee4f4a commit 5b031a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
fetch-depth: 0
- name: Fetch tags
run: git fetch --tags --force
- name: Install RoboRIO Toolchain
run: ./gradlew installRoboRioToolchain
- name: Install Java 17
uses: actions/setup-java@v4
with:
Expand Down
5 changes: 3 additions & 2 deletions photon-targeting/src/test/native/cpp/PacketTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ TEST(PacketTest, PnpResult) {
// }

TEST(PacketTest, PhotonPipelineResult) {
PhotonPipelineResult result(PhotonPipelineMetadata{0, 0, 1},
std::vector<PhotonTrackedTarget>{}, std::nullopt);
PhotonPipelineResult result(
PhotonPipelineMetadata<int64_t, int64_t, int64_t>{0, 0, 1},
std::vector<PhotonTrackedTarget>{}, std::nullopt);

Packet p;
p.Pack<decltype(result)>(result);
Expand Down

0 comments on commit 5b031a9

Please sign in to comment.