Преглед изворни кода

lolunit: rename test runner’s run() method to Run() for consistency.

legacy
Sam Hocevar sam пре 14 година
родитељ
комит
75d8811c74
2 измењених фајлова са 2 додато и 2 уклоњено
  1. +1
    -1
      src/lol/unit.h
  2. +1
    -1
      test/lol-test.cpp

+ 1
- 1
src/lol/unit.h Прегледај датотеку

@@ -174,7 +174,7 @@ public:
class TextTestRunner
{
public:
bool run()
bool Run()
{
bool ret = true;
std::stringstream errors("");


+ 1
- 1
test/lol-test.cpp Прегледај датотеку

@@ -20,7 +20,7 @@
int main(void)
{
lol::TextTestRunner runner;
bool success = runner.run();
bool success = runner.Run();
return success ? EXIT_SUCCESS : EXIT_FAILURE;
}


Loading…
Откажи
Сачувај