Navigation Menu

Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
    @normalize _time_value ->
    @normalized_time_value
              +
  • Loading branch information
kou committed Apr 24, 2014
1 parent ef50423 commit 604a830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/test_catalog_generator.rb
Expand Up @@ -36,14 +36,14 @@ def normalize_time(catalog, key)
rescue ArgumentError
# Do nothing for invalid time value
else
catalog[key] = @normalize_time_value
catalog[key] = @normalized_time_value
end
end

def test_default
catalog = {
"version" => 2,
"effectiveDate" => @normalize_time_value,
"effectiveDate" => @normalized_time_value,
"datasets" => {
},
}
Expand Down

0 comments on commit 604a830

Please sign in to comment.