Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Aug 10, 2023
1 parent c52773e commit 118ef9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ namespace xtd::tests {
assert::is_true(t.is_alive(), csf_);
assert::is_false(t.is_background(), csf_);
assert::is_false(t.is_thread_pool_thread(), csf_);
assert::is_false(t.joinable(), csf_);
assert::is_true(t.joinable(), csf_);
assert::are_equal(1, t.managed_thread_id(), csf_);
assert::is_empty(t.name(), csf_);
assert::are_not_equal(thread::invalid_thread_id, t.thread_id(), csf_);
Expand Down

0 comments on commit 118ef9d

Please sign in to comment.