Return-Path: X-Original-To: apmail-lucenenet-commits-archive@www.apache.org Delivered-To: apmail-lucenenet-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AA9BF18A6D for ; Sat, 30 May 2015 20:22:18 +0000 (UTC) Received: (qmail 96720 invoked by uid 500); 30 May 2015 20:22:18 -0000 Delivered-To: apmail-lucenenet-commits-archive@lucenenet.apache.org Received: (qmail 96688 invoked by uid 500); 30 May 2015 20:22:18 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 96678 invoked by uid 99); 30 May 2015 20:22:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 May 2015 20:22:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 69EB5E03EC; Sat, 30 May 2015 20:22:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: laimis@apache.org To: commits@lucenenet.apache.org Message-Id: <094dc360b71f4d5d86d5d6cb1f90e971@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: lucenenet git commit: print out values as doubles Date: Sat, 30 May 2015 20:22:18 +0000 (UTC) Repository: lucenenet Updated Branches: refs/heads/failingtests e6e834c9a -> 52f6561eb print out values as doubles Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/52f6561e Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/52f6561e Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/52f6561e Branch: refs/heads/failingtests Commit: 52f6561eb3613b8f2cc40dc5132db1b848f0d866 Parents: e6e834c Author: Laimonas Simutis Authored: Sat May 30 16:22:01 2015 -0400 Committer: Laimonas Simutis Committed: Sat May 30 16:22:01 2015 -0400 ---------------------------------------------------------------------- src/Lucene.Net.TestFramework/Search/QueryUtils.cs | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/52f6561e/src/Lucene.Net.TestFramework/Search/QueryUtils.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.TestFramework/Search/QueryUtils.cs b/src/Lucene.Net.TestFramework/Search/QueryUtils.cs index 814a9bf..3e2ef39 100644 --- a/src/Lucene.Net.TestFramework/Search/QueryUtils.cs +++ b/src/Lucene.Net.TestFramework/Search/QueryUtils.cs @@ -488,6 +488,9 @@ namespace Lucene.Net.Search Console.WriteLine("Failed, these two were deemed not equal:"); Console.WriteLine(skipToScore.ToString("R")); Console.WriteLine(scorer_.Score().ToString("R")); + Console.WriteLine(((double)skipToScore).ToString("R")); + Console.WriteLine(((double)scorer_.Score()).ToString("R")); + throw; }