Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Amazingkivas committed Mar 22, 2024
1 parent 4d76bb2 commit 63fe313
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ TEST(Borisov_Saveliy_ComplexNumberTest, Can_Divide_Complex_Numbers) {
ASSERT_DOUBLE_EQ(z3.getIm(), 1.0);
}

TEST(Borisov_Saveliy_ComplexNumberTest, Property_of_Product_of_Complex_Conjugate_Numbers_is_Satisfied) {
TEST(Borisov_Saveliy_ComplexNumberTest, Product_of_Complex_Conjugate) {
ComplexNumber z1(3.0, 4.0);
ComplexNumber z2(3.0, -4.0);

Expand All @@ -53,7 +53,7 @@ TEST(Borisov_Saveliy_ComplexNumberTest, Property_of_Product_of_Complex_Conjugate
ASSERT_DOUBLE_EQ(z3.getIm(), 0.0);
}

TEST(Borisov_Saveliy_ComplexNumberTest, Throws_When_Divide_Complex_Number_By_Zero) {
TEST(Borisov_Saveliy_ComplexNumberTest, Throws_When_Divide_By_Zero) {
ComplexNumber z1(1.1, 1.1);
ComplexNumber z0(0.0, 0.0);

Expand Down

0 comments on commit 63fe313

Please sign in to comment.