| Index: tests/language/src/CTConstTest.dart
|
| diff --git a/tests/language/src/CTConstTest.dart b/tests/language/src/CTConstTest.dart
|
| index 7173f384108b64effb28b878233dcd2d41ec31dc..9d8192443ab8defcb5fd0535ccaa7b6cdc7e831f 100644
|
| --- a/tests/language/src/CTConstTest.dart
|
| +++ b/tests/language/src/CTConstTest.dart
|
| @@ -93,6 +93,7 @@ class CTConstTest {
|
| } catch (IllegalAccessException e) {
|
| caughtException = true;
|
| }
|
| + print("1 Caught exception=${caughtException} (expected true)");
|
| Expect.equals(true, caughtException);
|
| Expect.equals(1, c11dItaly["green"]);
|
|
|
| @@ -102,6 +103,7 @@ class CTConstTest {
|
| } catch (IllegalAccessException e) {
|
| caughtException = true;
|
| }
|
| + print("2 Caught exception=${caughtException} (expected true)");
|
| Expect.equals(true, caughtException);
|
| Expect.equals(1, c11dItaly["green"]);
|
|
|
| @@ -111,6 +113,7 @@ class CTConstTest {
|
| } catch (IllegalAccessException e) {
|
| caughtException = true;
|
| }
|
| + print("3 Caught exception=${caughtException} (expected true)");
|
| Expect.equals(true, caughtException);
|
| Expect.equals(1, c11dItaly["green"]);
|
|
|
|
|