Skip to content

Commit

Permalink
Fix minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Prescod committed Jun 8, 2022
1 parent d6a8e84 commit cd3508d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ The `parent` parameter clarifies that the scope of the uniqueness is the local C
Each of the Contacts will have CampaignMembers that point to unique campaigns, like
this:

```json
```sh
Campaign(id=1, Name=Campaign 0)
Campaign(id=2, Name=Campaign 1)
Campaign(id=3, Name=Campaign 2)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_references.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,6 +1046,6 @@ def test_random_reference__joins(self, generated_rows):

combinations = set()
for row in generated_rows.table_values("CampaignMember"):
key = row["AccountId"], row["CampaignId"]
key = row["ContactId"], row["CampaignId"]
assert key not in combinations
combinations.add(key)

0 comments on commit cd3508d

Please sign in to comment.