File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ template <typename T> void printStack(MutantStack<T> &mstack) {
14
14
15
15
void myTest () {
16
16
NL;
17
- std::cout << BLACK (" ========== My test with MutantStack ==========" ) << std::endl;
17
+ std::cout << BLACK (" ========== My test with MutantStack ==========" )
18
+ << std::endl;
18
19
MutantStack<int > mstack;
19
20
20
21
// Test pushing elements
@@ -84,7 +85,7 @@ template <typename T> void printStackList(std::list<T> &mylist) {
84
85
85
86
void myTestList (void ) {
86
87
std::cout << std::endl;
87
- std::cout << BLACK (" ========== My test with List ==========" ) << std::endl;
88
+ std::cout << BLACK (" ========== My test with List ==========" ) << std::endl;
88
89
std::list<int > mylist; // Use std::list instead of MutantStack
89
90
90
91
// Test pushing elements
@@ -154,7 +155,7 @@ void listTest(void) {
154
155
155
156
int main () {
156
157
myTest ();
157
- myTestList ();
158
+ myTestList ();
158
159
subjectTest ();
159
160
listTest ();
160
161
You can’t perform that action at this time.
0 commit comments