Switch to correct grammatical ordering of child/parent enterprise on enterprise relationships page

This commit is contained in:
Rohan Mitchell
2014-08-26 15:42:35 +10:00
parent a5debc19dc
commit 1871d42e68
5 changed files with 10 additions and 10 deletions

View File

@@ -119,6 +119,6 @@ feature %q{
def have_relationship(parent, child, perms=[])
perms = perms.join(' ') || 'permits'
have_table_row [parent.name, perms, child.name, '']
have_table_row [child.name, perms, parent.name, '']
end
end