You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/08/19 01:09:07 UTC

[incubator-datasketches-cpp] branch tuple_sketch updated: switched test names

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch tuple_sketch
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-cpp.git


The following commit(s) were added to refs/heads/tuple_sketch by this push:
     new f60640c  switched test names
f60640c is described below

commit f60640c53290aaf3cb17db3bab881992a71cf5c7
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Tue Aug 18 18:08:51 2020 -0700

    switched test names
---
 tuple/test/array_of_doubles_sketch_test.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tuple/test/array_of_doubles_sketch_test.cpp b/tuple/test/array_of_doubles_sketch_test.cpp
index 711ead1..344af9c 100644
--- a/tuple/test/array_of_doubles_sketch_test.cpp
+++ b/tuple/test/array_of_doubles_sketch_test.cpp
@@ -187,7 +187,7 @@ TEST_CASE("aod sketch: stream serialize deserialize - estimation mode", "[tuple_
   }
 }
 
-TEST_CASE("aod sketch: bytes serialize deserialize - estimation mode", "[tuple_sketch]") {
+TEST_CASE("aod sketch: bytes to stream serialize deserialize - estimation mode", "[tuple_sketch]") {
   auto update_sketch = update_array_of_doubles_sketch<>::builder(2).build();
   std::vector<double> a = {1, 2};
   for (int i = 0; i < 8192; ++i) update_sketch.update(i, a);
@@ -218,7 +218,7 @@ TEST_CASE("aod sketch: bytes serialize deserialize - estimation mode", "[tuple_s
   }
 }
 
-TEST_CASE("aod sketch: bytes to stream serialize deserialize - estimation mode", "[tuple_sketch]") {
+TEST_CASE("aod sketch: bytes serialize deserialize - estimation mode", "[tuple_sketch]") {
   auto update_sketch = update_array_of_doubles_sketch<>::builder(2).build();
   std::vector<double> a = {1, 2};
   for (int i = 0; i < 8192; ++i) update_sketch.update(i, a);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org