Skip to content

Commit

Permalink
Update tests for v0.3.2 file formats.
Browse files Browse the repository at this point in the history
  • Loading branch information
countincognito committed Jul 7, 2024
1 parent 8ec21ff commit 09c7b56
Show file tree
Hide file tree
Showing 3 changed files with 3,737 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zametek.Data.ProjectPlan/Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static Common.ProjectPlan.ProjectPlanModel Upgrade(v0_3_2.ProjectPlanMode
public static Common.ProjectPlan.ProjectPlanModel Upgrade(v0_3_1.ProjectPlanModel projectPlan)
{
ArgumentNullException.ThrowIfNull(projectPlan);
return m_Mapper.Map<v0_3_1.ProjectPlanModel, Common.ProjectPlan.ProjectPlanModel>(projectPlan);
return Upgrade(v0_3_2.Converter.Upgrade(m_Mapper, projectPlan));
}

public static Common.ProjectPlan.ProjectPlanModel Upgrade(v0_3_0.ProjectPlanModel projectPlan)
Expand Down
Loading

0 comments on commit 09c7b56

Please sign in to comment.