diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-29 19:03:55 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-29 19:04:03 +0300 |
commit | cebfc5c8facbf6ae335499f7f4b3dc57a60af999 (patch) | |
tree | 4c39e613c87f6164df1fe80601e611987aaaec84 /protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp | |
parent | 189164bebda4bca9bb3d672500d844bfe7f26517 (diff) |
TDLIB update up to the current state
Diffstat (limited to 'protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp')
-rw-r--r-- | protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp b/protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp index e01b356e52..89a220d50e 100644 --- a/protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp +++ b/protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp @@ -1,5 +1,5 @@ // -// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023 +// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -166,7 +166,7 @@ TEST(Actors, simple_pass_event_arguments) { // Var-->LvalueRef // Var-->LvalueRef (Delayed) - // CE or stange behaviour + // CE or strange behaviour // Var-->Value sb.clear(); @@ -292,7 +292,6 @@ class OpenClose final : public td::Actor { cnt_--; yield(); } else { - td::unlink(file_name).ignore(); td::Scheduler::instance()->finish(); } } @@ -310,6 +309,7 @@ TEST(Actors, open_close) { while (scheduler.run_main(10)) { } scheduler.finish(); + td::unlink("server").ignore(); } class MsgActor : public td::Actor { |