Skip to content

Commit

Permalink
fix specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed Mar 9, 2021
1 parent e702724 commit f8eea89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/requests/exports_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"uid,fabricaAccountId,fabricaId,email,firstName,lastName,type,createdAt,modifiedAt,deletedAt,isActive\n",
)
expect(csv[1]).to start_with(
"#{contact.uid},UVA,UVA-[email protected],[email protected],Josiah,Carberry,voting",
"#{contact.uid},UVA,UVA-#{contact.email},#{contact.email},Josiah,Carberry,voting",
)
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/requests/v3/exports_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"uid,fabricaAccountId,fabricaId,email,firstName,lastName,type,createdAt,modifiedAt,deletedAt,isActive\n",
)
expect(csv[1]).to start_with(
"#{contact.uid},UVA,UVA-[email protected],[email protected],Josiah,Carberry,voting",
"#{contact.uid},UVA,UVA-#{contact.email},#{contact.email},Josiah,Carberry,voting",
)
end
end
Expand Down

0 comments on commit f8eea89

Please sign in to comment.