Skip to content

Commit

Permalink
[#2939] Fix solr tests due to package changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Oct 10, 2012
1 parent 889b512 commit ee11e9e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ckan/tests/lib/test_solr_search_index.py
Expand Up @@ -60,6 +60,8 @@ def test_index(self):
'id': u'penguin-id',
'title': u'penguin',
'state': u'active',
'private': False,
'owner_org': None,
'metadata_created': datetime_now.isoformat(),
'metadata_modified': datetime_now.isoformat(),
}
Expand Down Expand Up @@ -87,6 +89,8 @@ def test_index_clear(self):
'id': u'penguin-id',
'title': u'penguin',
'state': u'active',
'private': False,
'owner_org': None,
'metadata_created': datetime.now().isoformat(),
'metadata_modified': datetime.now().isoformat(),
}
Expand All @@ -108,6 +112,8 @@ def test_index_illegal_xml_chars(self):
'title': u'\u00c3a\u0001ltimo n\u00famero penguin',
'notes': u'\u00c3a\u0001ltimo n\u00famero penguin',
'state': u'active',
'private': False,
'owner_org': None,
'metadata_created': datetime.now().isoformat(),
'metadata_modified': datetime.now().isoformat(),
}
Expand Down

0 comments on commit ee11e9e

Please sign in to comment.