From 0316f51cdb95e324b8d19986855f49dd43f49ff2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?=
 <baris@nodebb.org>
Date: Sun, 5 Nov 2017 10:16:02 -0500
Subject: [PATCH] show values if test fails

---
 test/flags.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/flags.js b/test/flags.js
index 062c2d5c9a..bead3bed0c 100644
--- a/test/flags.js
+++ b/test/flags.js
@@ -442,7 +442,7 @@ describe('Flags', function () {
 		it('should retrieve a list of notes, from newest to oldest', function (done) {
 			Flags.getNotes(1, function (err, notes) {
 				assert.ifError(err);
-				assert(notes[0].datetime > notes[1].datetime);
+				assert(notes[0].datetime > notes[1].datetime, notes[0].datetime + '-' + notes[1].datetime);
 				assert.strictEqual('this is the second note', notes[0].content);
 				done();
 			});