@@ -15,7 +15,6 @@ TEST_CASE("Create a human", "[task_1]") {
1515 REQUIRE (lanfeust.influenced_by == nullptr );
1616}
1717
18-
1918#if defined(EXERCISM_RUN_ALL_TESTS)
2019
2120TEST_CASE (" Give a new artifact to a human" , " [task_2]" ) {
@@ -43,7 +42,7 @@ TEST_CASE("Exchange artifact with another human", "[task_3]") {
4342TEST_CASE (" Manifest power in a human" , " [task_4]" ) {
4443 human cian{};
4544 std::string gift_of_night{" heal" };
46-
45+
4746 manifest_power (cian, gift_of_night);
4847
4948 REQUIRE (cian.own_power != nullptr );
@@ -67,7 +66,6 @@ TEST_CASE("Check power intensity of person without power", "[task_6]") {
6766 REQUIRE (power_intensity (cixi) == 0 );
6867}
6968
70-
7169TEST_CASE (" Check power intensity when not in use" , " [task_6]" ) {
7270 human nicolede{};
7371 manifest_power (nicolede, " enchantment" );
@@ -107,7 +105,8 @@ TEST_CASE("Check power intensity drop after usage", "[task_6]") {
107105 manifest_power (palpatine, " force torrent" );
108106
109107 // let's start a non-canon duel:
110- // (Everything in the scope of the brackets is deleted after the brackets close)
108+ // (Everything in the scope of the brackets is deleted after the brackets
109+ // close)
111110 {
112111 human grievous{};
113112 use_power (palpatine, grievous);
0 commit comments