diff --git a/test/test_observer.cpp b/test/test_observer.cpp index 43750bad..933d600b 100644 --- a/test/test_observer.cpp +++ b/test/test_observer.cpp @@ -286,7 +286,7 @@ namespace //************************************************************************* TEST(test_8_notifications) { - typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>, Notification<8>> Observer; + typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>, Notification<8> > Observer; class Observable : public etl::observable { @@ -299,7 +299,7 @@ namespace //************************************************************************* TEST(test_7_notifications) { - typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>> Observer; + typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7> > Observer; class Observable : public etl::observable { @@ -312,7 +312,7 @@ namespace //************************************************************************* TEST(test_6_notifications) { - typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>> Observer; + typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6> > Observer; class Observable : public etl::observable { @@ -325,7 +325,7 @@ namespace //************************************************************************* TEST(test_5_notifications) { - typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5>> Observer; + typedef etl::observer, Notification<2>, Notification<3>, Notification<4>, Notification<5> > Observer; class Observable : public etl::observable { @@ -338,7 +338,7 @@ namespace //************************************************************************* TEST(test_4_notifications) { - typedef etl::observer, Notification<2>, Notification<3>, Notification<4>> Observer; + typedef etl::observer, Notification<2>, Notification<3>, Notification<4> > Observer; class Observable : public etl::observable { @@ -351,7 +351,7 @@ namespace //************************************************************************* TEST(test_3_notifications) { - typedef etl::observer, Notification<2>, Notification<3>> Observer; + typedef etl::observer, Notification<2>, Notification<3> > Observer; class Observable : public etl::observable { @@ -364,7 +364,7 @@ namespace //************************************************************************* TEST(test_2_notifications) { - typedef etl::observer, Notification<2>> Observer; + typedef etl::observer, Notification<2> > Observer; class Observable : public etl::observable { @@ -377,7 +377,7 @@ namespace //************************************************************************* TEST(test_1_notification) { - typedef etl::observer> Observer; + typedef etl::observer > Observer; class Observable : public etl::observable {