Merge "services/device/mgmt_v23_test: de-flake: wait for associate command to complete"
diff --git a/services/device/mgmt_v23_test.go b/services/device/mgmt_v23_test.go
index a2fefec..6652839 100644
--- a/services/device/mgmt_v23_test.go
+++ b/services/device/mgmt_v23_test.go
@@ -294,7 +294,7 @@
 	adminDeviceBin.Run("acl", "set", mtName+"/devmgr/device", "root/u/alice", "Read,Resolve,Write")
 
 	if withSuid {
-		adminDeviceBin.Start("associate", "add", mtName+"/devmgr/device", appUser, "root/u/alice")
+		adminDeviceBin.Run("associate", "add", mtName+"/devmgr/device", appUser, "root/u/alice")
 
 		aai := adminDeviceBin.Start("associate", "list", mtName+"/devmgr/device")
 		if got, expected := strings.Trim(aai.Output(), "\n "), "root/u/alice "+appUser; got != expected {