Commit 13f207e539ba447a9a2aead3701fcf08979ce95c
1 parent
160711f2
Exists in
master
and in
28 other branches
Workaround database setup problem
Don't use a name that was used before, probably by fixtures.
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
features/location.feature
... | ... | @@ -36,9 +36,9 @@ Feature: Location |
36 | 36 | | city | |
37 | 37 | | zip_code | |
38 | 38 | Given the following <plural> |
39 | - | identifier | name | owner | | |
40 | - | colivre | Colivre | zezinho | | |
41 | - And I am on Colivre's control panel | |
39 | + | identifier | name | owner | | |
40 | + | mycollective | My Collective | zezinho | | |
41 | + And I am on My Collective's control panel | |
42 | 42 | And I follow "Location" |
43 | 43 | And I select "Brazil" from "Country" |
44 | 44 | And I fill in the following: |
... | ... | @@ -47,7 +47,7 @@ Feature: Location |
47 | 47 | | City | Salvador | |
48 | 48 | | ZIP Code | 40110010 | |
49 | 49 | When I press "Save" |
50 | - Then "colivre" should have the following data | |
50 | + Then "mycollective" should have the following data | |
51 | 51 | | address | country | state | city | zip_code | |
52 | 52 | | Rua Marechal Floriano, 28 | BR | Bahia | Salvador | 40110010 | |
53 | 53 | Examples: | ... | ... |