Fix private repo clone test to use current repo name

The assertion was checking for the old repo name brynary/arc instead of
fabro-sh/fabro.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-19 09:35:40 -04:00
parent eff226f5d4
commit b85d8119e6

View file

@ -1423,8 +1423,8 @@ async fn daytona_clone_private_repo_with_github_app_iat() {
.unwrap();
assert_eq!(result.exit_code, 0);
assert!(
result.stdout.contains("brynary/arc"),
"origin should point to brynary/arc, got: {}",
result.stdout.contains("fabro-sh/fabro"),
"origin should point to fabro-sh/fabro, got: {}",
result.stdout.trim()
);