Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgross committed Jul 15, 2015
1 parent cab81c8 commit d94232c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions quintagroup/transmogrifier/tests/portlets.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,23 +108,23 @@ New portlet must be added to existent ones.

>>> 'habra-rss' in mapping
True
>>> mapping['habra-rss'].count
>>> int(mapping['habra-rss'].count)
20
>>> mapping['habra-rss'].url
u'http://habrahabr.ru/rss/'
>>> mapping['habra-rss'].portlet_title
u'Habrahabr RSS feed'
>>> mapping['habra-rss'].timeout
>>> int(mapping['habra-rss'].timeout)
120
>>> 'rss' in mapping
True
>>> mapping['rss'].count
>>> int(mapping['rss'].count)
10
>>> mapping['rss'].url
u'http://sumno.com/feeds/main-page/'
>>> mapping['rss'].portlet_title
u'RSS feed'
>>> mapping['rss'].timeout
>>> int(mapping['rss'].timeout)
60


Expand Down

0 comments on commit d94232c

Please sign in to comment.