Skip to content

Commit bc21163

Browse files
authored
fix: wrong type assignment in doc (#975)
1 parent 33f9c2d commit bc21163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/site/docs/test-doubles/input-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ InputFileContent fileToUpload = InputFileContent.CreateFromText("Text content",
1919
IRenderedComponent<ComponentUnderTest> cut = ctx.RenderComponent<ComponentUnderTest>();
2020

2121
// Find the InputFile component
22-
IRenderedComponent<ComponentUnderTest> inputFile = cut.FindComponent<InputFile>();
22+
IRenderedComponent<InputFile> inputFile = cut.FindComponent<InputFile>();
2323

2424
// Upload the file to upload to the InputFile component
2525
inputFile.UploadFile(fileToUpload);

0 commit comments

Comments
 (0)