Skip to content

Commit

Permalink
Re #10137. Fixing unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed Aug 20, 2014
1 parent b360bbf commit cffeb5b
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -42,8 +42,8 @@ def PyInit(self):
"With this option, the posfix of the output file is .csv automatically. "
self.declareProperty("FileFormat", "tab", mantid.kernel.StringListValidator(fileformates), des)

# Time zone
timezones = ["UTC", "America/New_York"]
# Time zone
timezones = ["UTC", "America/New_York"]
self.declareProperty("TimeZone", "America/New_York", StringListValidator(timezones))


Expand Down Expand Up @@ -142,7 +142,7 @@ def _processInputs(self):
# Force the extension of the output file to be .csv
self._logfilename = "%s.csv" % (fileName)

self._timezone = self.getProperty("TimeZone").value
self._timezone = self.getProperty("TimeZone").value

return

Expand Down

0 comments on commit cffeb5b

Please sign in to comment.