Skip to content

Commit

Permalink
Renaming in order to test PR handling
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Oct 2, 2023
1 parent 2d4c048 commit c924442
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/test/gpiobus_raspberry_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ TEST(GpiobusRaspberry, GetDtRanges)
EXPECT_EQ(0x20000000, GPIOBUS_Raspberry::bcm_host_get_peripheral_address());
DeleteTempFile("/proc/device-tree/soc/ranges");

CleanupAllTempFiles();
CleanUpAllTempFiles();
}

TEST(GpiobusRaspberry, GetDat)
Expand Down
2 changes: 1 addition & 1 deletion cpp/test/test_shared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void DeleteTempFile(const string& filename)
remove(temp_file);
}

void CleanupAllTempFiles()
void CleanUpAllTempFiles()
{
remove_all(test_data_temp_path);
}
Expand Down
2 changes: 1 addition & 1 deletion cpp/test/test_shared.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void CreateTempFileWithData(const string&, vector<uint8_t>&);

void DeleteTempFile(const string&);
// Call this at the end of every test case to make sure things are cleaned up
void CleanupAllTempFiles();
void CleanUpAllTempFiles();

string ReadTempFileToString(const string& filename);

Expand Down

0 comments on commit c924442

Please sign in to comment.