,
diff --git a/test/testapps/BasicTestApp/PropertiesChangedHandlerChild.cshtml b/test/testapps/BasicTestApp/PropertiesChangedHandlerChild.cshtml
index 7a41c90368..caa5c46849 100644
--- a/test/testapps/BasicTestApp/PropertiesChangedHandlerChild.cshtml
+++ b/test/testapps/BasicTestApp/PropertiesChangedHandlerChild.cshtml
@@ -1,11 +1,13 @@
You supplied: @SuppliedValue
-I computed: @ComputedValue
+I computed: @computedValue
@functions {
public int SuppliedValue { get; set; }
- // TODO: Instead of computing this in the getter, override OnParametersChanged or whatever
- // it ends up being called when that's implemented on BlazorComponent
- private int ComputedValue
- => SuppliedValue * 2;
+ private int computedValue;
+
+ protected override void OnParametersSet()
+ {
+ computedValue = SuppliedValue * 2;
+ }
}