Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
654800b6
Commit
654800b6
authored
Oct 15, 2015
by
Nick Craver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CoreCLR fixes
parent
ce152da4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
Program.cs
Tests/Program.cs
+1
-1
Tests.cs
Tests/Tests.cs
+0
-4
No files found.
Tests/Program.cs
View file @
654800b6
...
@@ -181,7 +181,7 @@ private static void RunTests<T>(ref int fail, ref int skip, ref int pass, ref in
...
@@ -181,7 +181,7 @@ private static void RunTests<T>(ref int fail, ref int skip, ref int pass, ref in
{
{
if
(
HasAttribute
<
SkipTestAttribute
>(
method
))
if
(
HasAttribute
<
SkipTestAttribute
>(
method
))
{
{
Console
.
Write
(
"Skipping "
+
method
.
Name
);
Console
.
Write
Line
(
"Skipping "
+
method
.
Name
);
skip
++;
skip
++;
continue
;
continue
;
}
}
...
...
Tests/Tests.cs
View file @
654800b6
...
@@ -4477,11 +4477,7 @@ private void Issue261_Decimals_ADONET(bool setPrecisionScaleViaAbstractApi)
...
@@ -4477,11 +4477,7 @@ private void Issue261_Decimals_ADONET(bool setPrecisionScaleViaAbstractApi)
if
(
setPrecisionScaleViaAbstractApi
)
if
(
setPrecisionScaleViaAbstractApi
)
{
{
#if DNXCORE50
DbParameter
baseParam
=
c
;
#else
IDbDataParameter
baseParam
=
c
;
IDbDataParameter
baseParam
=
c
;
#endif
baseParam
.
Precision
=
10
;
baseParam
.
Precision
=
10
;
baseParam
.
Scale
=
5
;
baseParam
.
Scale
=
5
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment