Skip to content

Commit

Permalink
revert seed change, update test
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey committed Sep 11, 2023
1 parent 4e074ee commit 35da3a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/bsky/tests/seeds/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export default async (sc: SeedClient, users = true) => {
await sc.follow(bob, alice)
await sc.follow(bob, carol, createdAtMicroseconds())
await sc.follow(dan, bob, createdAtTimezone())
await sc.follow(bob, dan)
await sc.post(alice, posts.alice[0], undefined, undefined, undefined, {
labels: {
$type: 'com.atproto.label.defs#selfLabels',
Expand Down
4 changes: 2 additions & 2 deletions packages/bsky/tests/views/suggested-follows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ describe('suggested follows', () => {
actor: sc.dids.bob,
},
{ headers: await network.serviceHeaders(sc.dids.carol) },
)
) // should be 0

expect(result.data.suggestions.length).toBe(3) // backfilled with 2 NPCs
expect(result.data.suggestions.length).toBe(2) // backfilled with 2 NPCs
expect(
result.data.suggestions.find((sug) => {
return [sc.dids.alice, sc.dids.carol, sc.dids.bob].includes(sug.did)
Expand Down

0 comments on commit 35da3a7

Please sign in to comment.