Skip to content

Commit

Permalink
Update thread_tests.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Sep 4, 2023
1 parent d052de7 commit f5b266f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ namespace xtd::tests {
assert::is_empty(threading::thread::current_thread().name (), csf_);
assert::are_equal(thread_priority::normal, threading::thread::current_thread().priority(), csf_);
assert::are_equal(threading::thread::current_thread().thread_id(), threading::thread::current_thread().thread_id(), csf_);
assert::are_equal(threading::thread_state::running, threading::thread::current_thread().thread_state(), csf_);
assert::is_true(threading::thread::current_thread().thread_state() == threading::thread_state::running || threading::thread::current_thread().thread_state() == threading::thread_state::wait_sleep_join, csf_);
thread2 = threading::thread::current_thread();
}}};
thread.start();
Expand Down

0 comments on commit f5b266f

Please sign in to comment.