File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- # DataMeta - submission server for data and affiliated metadata
1
+ # DataMeta - submission server for data and associated metadata
2
2
3
3
- Initial version.
Original file line number Diff line number Diff line change 1
- # DataMeta - submission server for data and affiliated metadata
1
+ # DataMeta - submission server for data and associated metadata
2
2
3
3
## Getting Started
4
4
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def test_passing_view(self):
55
55
from .views .default import my_view
56
56
info = my_view (dummy_request (self .session ))
57
57
self .assertEqual (info ['one' ].name , 'one' )
58
- self .assertEqual (info ['project' ], 'DataMeta - submission server for data and affiliated metadata' )
58
+ self .assertEqual (info ['project' ], 'DataMeta - submission server for data and associated metadata' )
59
59
60
60
61
61
class TestMyViewFailureCondition (BaseTest ):
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def my_view(request):
13
13
one = query .filter (models .MyModel .name == 'one' ).first ()
14
14
except DBAPIError :
15
15
return Response (db_err_msg , content_type = 'text/plain' , status = 500 )
16
- return {'one' : one , 'project' : 'DataMeta - submission server for data and affiliated metadata' }
16
+ return {'one' : one , 'project' : 'DataMeta - submission server for data and associated metadata' }
17
17
18
18
19
19
db_err_msg = """\
Original file line number Diff line number Diff line change 51
51
setup (
52
52
name = 'datameta' ,
53
53
version = '0.9.0alpha1' ,
54
- description = 'DataMeta - submission server for data and affiliated metadata' ,
54
+ description = 'DataMeta - submission server for data and associated metadata' ,
55
55
long_description = README + '\n \n ' + CHANGES ,
56
56
classifiers = [
57
57
'Programming Language :: Python' ,
You can’t perform that action at this time.
0 commit comments