Skip to content

Commit

Permalink
#343 Fixed the failing Integration and Unit Tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikependon committed Oct 3, 2020
1 parent 8c5fd67 commit a44cf45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RepoDb.Core/RepoDb/Extensions/DbConnectionExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ internal static async Task<TResult> ExecuteScalarAsyncInternal<TResult>(this IDb
dbFields: dbFields,
skipCommandArrayParametersCheck: skipCommandArrayParametersCheck))
{
return Converter.ToType<TResult>(command.ExecuteScalarAsync(cancellationToken));
return Converter.ToType<TResult>(await command.ExecuteScalarAsync(cancellationToken));
}
}

Expand Down

0 comments on commit a44cf45

Please sign in to comment.