File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
29
29
__title__ = 'minio-py'
30
30
__author__ = 'Minio, Inc.'
31
- __version__ = '2.0.2 '
31
+ __version__ = '2.0.3 '
32
32
__license__ = 'Apache 2.0'
33
33
__copyright__ = 'Copyright 2015, 2016 Minio, Inc.'
34
34
Original file line number Diff line number Diff line change @@ -87,14 +87,14 @@ def test_default_user_agent(self):
87
87
88
88
def test_set_app_info (self ):
89
89
client = Minio ('localhost' )
90
- expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.2 '
91
- client .set_app_info ('hello' , '2.0.2 ' )
90
+ expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.3 '
91
+ client .set_app_info ('hello' , '2.0.3 ' )
92
92
eq_ (client ._user_agent , expected_user_agent )
93
93
94
94
@raises (ValueError )
95
95
def test_set_app_info_requires_non_empty_name (self ):
96
96
client = Minio ('localhost:9000' )
97
- client .set_app_info ('' , '2.0.2 ' )
97
+ client .set_app_info ('' , '2.0.3 ' )
98
98
99
99
@raises (ValueError )
100
100
def test_set_app_info_requires_non_empty_version (self ):
You can’t perform that action at this time.
0 commit comments