Skip to content

Commit 574e692

Browse files
committed
Fixed a mislabeled error message
1 parent e3bc607 commit 574e692

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

FirebaseAdmin/FirebaseAdmin.Tests/Auth/UserRecordTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,4 @@ public void AllProperties()
144144
Assert.Equal(UserRecord.UnixEpoch.AddMilliseconds(150), metadata.LastSignInTimestamp);
145145
}
146146
}
147-
}
147+
}

FirebaseAdmin/FirebaseAdmin/Auth/FirebaseUserManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public async Task UpdateUserAsync(
106106
"accounts:update", payload, cancellationToken).ConfigureAwait(false);
107107
if (payload.Uid != (string)response["localId"])
108108
{
109-
throw new FirebaseException($"Failed to get user: {payload.Uid}");
109+
throw new FirebaseException($"Failed to update user: {payload.Uid}");
110110
}
111111
}
112112

FirebaseAdmin/FirebaseAdmin/Auth/UserArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ internal UpdateUserRequest(UserArgs args)
104104
public string CustomClaims { get; set; }
105105
}
106106
}
107-
}
107+
}

0 commit comments

Comments
 (0)