summaryrefslogtreecommitdiff
path: root/protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp')
-rw-r--r--protocols/Telegram/tdlib/td/tdactor/test/actors_simple.cpp6
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 {