Skip to content

Commit 0efb4db

Browse files
committed
2 parents c8cb3b4 + 5aa3045 commit 0efb4db

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Tests/UnitSystemTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void AllUnitAbbreviationsImplemented([Values("", "en-US", "nb-NO", "ru-RU
5151
}
5252

5353
Assert.IsEmpty(unitsMissingAbbreviations,
54-
"Units missing abbreviations: " + string.Join(", ", unitsMissingAbbreviations));
54+
"Units missing abbreviations: " + string.Join(", ", unitsMissingAbbreviations.Select(u => u.ToString()).ToArray()));
5555
}
5656

5757
[Test]

Tests/UnitsNet.Tests.net35.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>UnitsNet.Tests.net35</RootNamespace>
1111
<AssemblyName>UnitsNet.Tests.net35</AssemblyName>
12-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\Src\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16+
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
1617
</PropertyGroup>
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>true</DebugSymbols>

0 commit comments

Comments
 (0)