Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Jul 7, 2024
1 parent df7359f commit c7ac6bc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/xtd.core.unit_tests/src/xtd/tests/iequatable_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ namespace xtd::tests {

assert::is_true(ie1 == ie2, csf_);
assert::is_false(ie1 == ie3, csf_);
assert::is_false(ie1 == "a"_s);
}

void test_method_(opearator_inequal) {
Expand All @@ -50,7 +49,6 @@ namespace xtd::tests {

assert::is_false(ie1 != ie2, csf_);
assert::is_true(ie1 != ie3, csf_);
assert::is_true(ie1 != "a"_s);
}
};
}

0 comments on commit c7ac6bc

Please sign in to comment.