Skip to content

Commit

Permalink
[#3192] u'literals'
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed Sep 16, 2016
1 parent 91f34b3 commit 81f02f2
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -30,7 +30,7 @@ def test_normal_dataset_permissions_are_normal(self):
org = factories.Organization(user=user)
org2 = factories.Organization(
user=user2,
users=[{'name': user3['id'], 'capacity': 'member'}])
users=[{u'name': user3['id'], u'capacity': u'member'}])

dataset = factories.Dataset(
name=u'd1', user=user, private=True, owner_org=org['id'])
Expand Down Expand Up @@ -80,7 +80,7 @@ def test_proposed_dataset_visible_to_org_admin(self):
user2 = factories.User()
org = factories.Organization(
user=user2,
users=[{'name': user['id'], 'capacity': 'editor'}])
users=[{u'name': user['id'], u'capacity': u'editor'}])
dataset = factories.Dataset(
name=u'd1', notes=u'Proposed:', user=user, owner_org=org['id'])

Expand All @@ -98,7 +98,7 @@ def test_proposed_dataset_invisible_to_another_editor(self):
user2 = factories.User()
org = factories.Organization(
user=user2,
users=[{'name': user['id'], 'capacity': 'editor'}])
users=[{u'name': user['id'], u'capacity': u'editor'}])
dataset = factories.Dataset(
name=u'd1', notes=u'Proposed:', user=user2, owner_org=org['id'])

Expand Down

0 comments on commit 81f02f2

Please sign in to comment.