Skip to content

Commit a227ad1

Browse files
author
randylevy
committed
Fix error from rename
1 parent 990a8f7 commit a227ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/Unity.Interception/Tests/Tests.Unity.Interception/MatchingRules/PropertyMatchingRuleFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void Setup()
2323
getMyProperty = propTarget.GetProperty("MyProperty").GetGetMethod();
2424
setMyProperty = propTarget.GetProperty("MyProperty").GetSetMethod();
2525
getMyOtherProperty = propTarget.GetProperty("MyOtherProperty").GetGetMethod();
26-
setNotAProperty = propTarget.GetMethod("set_NotAProperty");
26+
setNotAProperty = propTarget.GetMethod("SetNotAProperty");
2727
getACompletelyDifferentProperty =
2828
propTarget.GetProperty("ACompletelyDifferentProperty").GetGetMethod();
2929
setACompletelyDifferentProperty =

0 commit comments

Comments
 (0)