From 3feee30eacb7afa9964483bccde2176473fe6003 Mon Sep 17 00:00:00 2001 From: Thomas Fussell Date: Tue, 21 Mar 2017 19:31:23 -0400 Subject: [PATCH] remove of the cell value xlsx producer tests --- source/workbook/tests/test_produce_xlsx.hpp | 28 ++++++--------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/source/workbook/tests/test_produce_xlsx.hpp b/source/workbook/tests/test_produce_xlsx.hpp index 047ce6b8..daa92ac3 100644 --- a/source/workbook/tests/test_produce_xlsx.hpp +++ b/source/workbook/tests/test_produce_xlsx.hpp @@ -58,29 +58,17 @@ public: ws.cell("A4").value("bool (false)"); ws.cell("B4").value(false); - ws.cell("A5").value("number (std::int8_t)"); - ws.cell("B5").value(std::numeric_limits::max()); + ws.cell("A5").value("number (int)"); + ws.cell("B5").value(std::numeric_limits::max()); - ws.cell("A6").value("number (std::uint8_t)"); - ws.cell("B6").value(std::numeric_limits::max()); + ws.cell("A5").value("number (unsigned int)"); + ws.cell("B5").value(std::numeric_limits::max()); - ws.cell("A7").value("number (std::uint16_t)"); - ws.cell("B7").value(std::numeric_limits::max()); + ws.cell("A6").value("number (long long int)"); + ws.cell("B6").value(std::numeric_limits::max()); - ws.cell("A8").value("number (std::uint16_t)"); - ws.cell("B8").value(std::numeric_limits::max()); - - ws.cell("A9").value("number (std::uint32_t)"); - ws.cell("B9").value(std::numeric_limits::max()); - - ws.cell("A10").value("number (std::uint32_t)"); - ws.cell("B10").value(std::numeric_limits::max()); - - ws.cell("A11").value("number (std::uint64_t)"); - ws.cell("B11").value(std::numeric_limits::max()); - - ws.cell("A12").value("number (std::uint64_t)"); - ws.cell("B12").value(std::numeric_limits::max()); + ws.cell("A6").value("number (unsigned long long int)"); + ws.cell("B6").value(std::numeric_limits::max()); ws.cell("A13").value("number (float)"); ws.cell("B13").value(std::numeric_limits::max());