Skip to content

Commit

Permalink
no tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Mar 15, 2024
1 parent 441b5ad commit b1adffe
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/stim/str_util.test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,3 @@
// limitations under the License.

#include "gtest/gtest.h"

#include <ostream>
#include <sstream>
#include <string>

TEST(str_util, comma_sep) {
std::vector<int> v{1, 2, 3};
std::stringstream out;
out << "1";
out << ", 2, 3";
ASSERT_EQ(out.str(), "1, 2, 3");
}

0 comments on commit b1adffe

Please sign in to comment.