Ignore:
Timestamp:
Oct 6, 2004, 4:32:07 PM (20 years ago)
Author:
duncan
Message:

added x,y to the title line in .xya files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/test_interpolate_sww.py

    r356 r359  
    197197        string_list = title[0].split(',') # assume a title has only one line
    198198        time_list = []
     199
     200        answer = string_list.pop(0)
     201        self.failUnless( answer == 'x', 'Title is wrong!')
     202        self.failUnless( string_list.pop(0) == 'y', 'Title is wrong!')
     203       
    199204        for time in string_list:
    200205            time_list.append(float(time))
Note: See TracChangeset for help on using the changeset viewer.