mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4721
a9f9406c
unit_tests: notify test special case for the usual weirdo (moneromooo-monero)
This commit is contained in:
commit
4cbb476cd1
1 changed files with 5 additions and 1 deletions
|
@ -52,7 +52,11 @@ TEST(notify, works)
|
|||
ASSERT_TRUE(fd >= 0);
|
||||
close(fd);
|
||||
|
||||
const std::string spec = epee::string_tools::get_current_module_folder() + "/test_notifier " + name_template + " %s";
|
||||
const std::string spec = epee::string_tools::get_current_module_folder() + "/test_notifier"
|
||||
#ifdef _WIN32
|
||||
+ ".exe"
|
||||
#endif
|
||||
+ " " + name_template + " %s";
|
||||
|
||||
tools::Notify notify(spec.c_str());
|
||||
notify.notify("1111111111111111111111111111111111111111111111111111111111111111");
|
||||
|
|
Loading…
Reference in a new issue