Skip to content

Commit 3bffef5

Browse files
committed
fix(ci): change error returned by api
1 parent e358015 commit 3bffef5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

specs/_common/user_provisioning_spec.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,8 @@
4646

4747
ok, res = self.client.create_user(self.user_name)
4848
expect((ok, res)).not_to(be_successful_api_call)
49-
expect(res).to(contain(f"User {self.user_name} already exists"))
49+
expect(res).to(
50+
contain(
51+
"A user with the same email already exists for the same customer"
52+
)
53+
)

0 commit comments

Comments
 (0)