Closed robertwesterlund closed 6 years ago
Merging #70 into master will increase coverage by
<.01%
. The diff coverage is100%
.
@@ Coverage Diff @@
## master #70 +/- ##
==========================================
+ Coverage 91.95% 91.95% +<.01%
==========================================
Files 140 140
Lines 4921 4922 +1
Branches 453 453
==========================================
+ Hits 4525 4526 +1
Misses 286 286
Partials 110 110
Impacted Files | Coverage Δ | |
---|---|---|
Liquid.NET/src/Utils/LiquidValueConverter.cs | 98.44% <100%> (+0.01%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 988bc1d...cef3c68. Read the comment docs.
This Pull Request changes the behavior of the LiquidValueConverter so that it ignores static properties (only includes public instance properties with a getter).
That changes the observed behavior of the following code:
The behavior is changed from
liquid
having two properties, both theTitle
and theOtherData
property to instead only including theTitle
property.This fixes #69, in case you agree with the issue.