Skip to content

Commit

Permalink
Merge branch 'release/1.0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Grangier committed Apr 21, 2014
2 parents fd82cb9 + e0669a9 commit bad4c8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion goose/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
limitations under the License.
"""

version_info = (1, 0, 9)
version_info = (1, 0, 11)
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion tests/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ def test_tmp_defaut(self):
self.assertEquals(g.config.local_storage_path, default_local_storage_path)

def test_tmp_overwritten(self):
path = '/this/directory/does/not/exist/i/assume/'
path = '/tmp/bla'
g = Goose({'local_storage_path': path})
self.assertEquals(g.config.local_storage_path, path)

0 comments on commit bad4c8b

Please sign in to comment.