Index: tools/grit/grit/tclib_unittest.py |
diff --git a/tools/grit/grit/tclib_unittest.py b/tools/grit/grit/tclib_unittest.py |
index 0d20f1a2316a1ad1662dfd87d0f4a8e36c3db24b..92c12f7557c55c2166c48b046deeb3ebaac65d56 100644 |
--- a/tools/grit/grit/tclib_unittest.py |
+++ b/tools/grit/grit/tclib_unittest.py |
@@ -16,6 +16,7 @@ import unittest |
from grit import tclib |
+from grit import exception |
import grit.extern.tclib |
@@ -157,6 +158,7 @@ class TclibUnittest(unittest.TestCase): |
def testPlaceholderNameChecking(self): |
try: |
ph = tclib.Placeholder('BINGO BONGO', 'bla', 'bla') |
+ raise Exception("We shouldn't get here") |
except exception.InvalidPlaceholderName: |
pass # Expect exception to be thrown because presentation contained space |