Skip to content

Commit a1228b4

Browse files
update input data
1 parent 120a939 commit a1228b4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/integration/test_contacts.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
from hubspot.crm.contacts import PublicObjectSearchRequest
44

55
CONTACT_PROPERTIES = {
6-
"email": "bcooper@biglytics.net",
7-
"lastname": "Cooper",
8-
"firstname": "Bryan"
6+
"email": "rRocket@TestCompany.net",
7+
"lastname": "Rocket",
8+
"firstname": "Racoon"
99
}
1010

1111

@@ -21,8 +21,8 @@ def create_contact(api_client):
2121
@pytest.fixture
2222
def create_company(api_client):
2323
properties = {
24-
"domain": "biglytics.net",
25-
"name": "Biglytics",
24+
"domain": "TestCompany.net",
25+
"name": "TestCompany",
2626
}
2727

2828
company = api_client.crm.companies.basic_api.create(properties)
@@ -123,7 +123,7 @@ def test_contact__do_search(api_client, create_contact):
123123
{
124124
"filters": [
125125
{
126-
"value": "bcooper@biglytics.net",
126+
"value": "rRocket@TestCompany.net",
127127
"propertyName": "email",
128128
"operator": "EQ"
129129
}

0 commit comments

Comments
 (0)