Skip to content

Commit

Permalink
Merge pull request #40 from keiji/fix_json_key
Browse files Browse the repository at this point in the history
Fix inappropriate Json key name
  • Loading branch information
keiji authored Jun 9, 2021
2 parents 42e2fab + f688e5a commit b622439
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chino.Common.Tests/files/daily_summaries_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"High": 1.0,
"Standard": 1.0
},
"minimum_risk_score": 0.0,
"minimum_window_score": 0.0,
"report_type_weights": {
"ConfirmedClinicalDiagnosis": 1.0,
"ConfirmedTest": 1.0,
Expand Down
2 changes: 1 addition & 1 deletion Chino.Common.Tests/files/exposure_configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"High": 1.0,
"Standard": 1.0
},
"minimum_risk_score": 0.0,
"minimum_window_score": 0.0,
"report_type_weights": {
"ConfirmedClinicalDiagnosis": 1.0,
"ConfirmedTest": 1.0,
Expand Down
2 changes: 1 addition & 1 deletion Chino.Common/DailySummariesConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class DailySummariesConfig
/// <summary>
/// Minimum score that ExposureWindows must reach in order to be included in the DailySummary.ExposureSummaryData.
/// </summary>
[JsonProperty("minimum_risk_score")]
[JsonProperty("minimum_window_score")]
public double MinimumWindowScore { get; set; } = 0.0;

/// <summary>
Expand Down

0 comments on commit b622439

Please sign in to comment.