fork of indigo with slightly nicer lexgen

minor fixes to build and pass tests

Changed files
+6 -5
cmd
stress
mst
+5 -4
cmd/stress/main.go
··· 51 51 rand.Read(buf) 52 52 id := hex.EncodeToString(buf) 53 53 54 - acc, err := atp.CreateAccount(ctx, fmt.Sprintf("user-%s@test.com", id), "user-"+id+".test", "password") 54 + var invite *string 55 + acc, err := atp.CreateAccount(ctx, fmt.Sprintf("user-%s@test.com", id), "user-"+id+".test", "password", invite) 55 56 if err != nil { 56 57 return err 57 58 } ··· 59 60 quiet := cctx.Bool("quiet") 60 61 61 62 atp.C.Auth = &xrpc.AuthInfo{ 62 - Did: acc.Did, 63 - Jwt: acc.AccessJwt, 64 - Username: acc.Handle, 63 + Did: acc.Did, 64 + AccessJwt: acc.AccessJwt, 65 + Handle: acc.Handle, 65 66 } 66 67 67 68 count := cctx.Int("count")
+1 -1
mst/mst_test.go
··· 88 88 } 89 89 } 90 90 } else { 91 - t.Fatal("different number of values than expected: %d != %d", len(vals), len(out)) 91 + t.Fatalf("different number of values than expected: %d != %d", len(vals), len(out)) 92 92 } 93 93 } 94 94