Skip to content

Commit 3caa039

Browse files
committedDec 31, 2020
Fix whitespace issues in testcases
This adds a newline at the end of the file, which is helpful for git diff display.
1 parent 2ca15ad commit 3caa039

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎test/src/String/test_comparisonFunc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ TEST_CASE ("Testing String::endsWith(const String &)", "[String-endsWith-10]")
104104
arduino::String str2("Helo");
105105
REQUIRE(str1.endsWith(str2) == 0);
106106
}
107-
}
107+
}

‎test/src/String/test_concat.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ TEST_CASE ("Testing String::concat(const __FlashStringHelper *)", "[String-conca
9999
arduino::String str1("Hello");
100100
REQUIRE(str1.concat(F(" Arduino")) == 1);
101101
REQUIRE(strcmp(str1.c_str(), "Hello Arduino") == 0);
102-
}
102+
}

‎test/src/String/test_operators.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,4 @@ TEST_CASE ("Testing & String::operator = (StringSumHelper &&)", "[String-operato
153153
arduino::String str1("Arduino");
154154
str1 = static_cast<arduino::StringSumHelper&&>(str+ch);
155155
REQUIRE(str1.compareTo("Hello!") == 0);
156-
}
156+
}

‎test/src/String/test_substring.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ TEST_CASE ("Testing String::substring(unsigned int, unsigned int)", "[String-sub
3535
arduino::String str2("ello");
3636
REQUIRE(str2.compareTo(str1.substring(9,1)) == 0);
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)
Please sign in to comment.