Changeset 8060
- Timestamp:
- Oct 30, 2010, 6:37:00 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/geometry/test_polygon.py
r8058 r8060 89 89 filename = path + sep + 'complex_polygon.csv' 90 90 # Should cause an Exception 91 p1 = read_polygon(filename) 91 try: 92 p1 = read_polygon(filename) 93 except Exception: 94 pass 95 else: 96 raise Exception, 'Closed polygon should have raised exception' 97 92 98 93 99
Note: See TracChangeset
for help on using the changeset viewer.