Commit e085bc80 authored by Nico Caprioli's avatar Nico Caprioli

Removed test

removed substr() test
parent af622c0c
......@@ -5,9 +5,6 @@ TEST(string_view_test, substr_test) {
std::string_view orig ("test");
std::string_view targ ("est");
auto sub = orig.substr();
ASSERT_EQ(sub, orig);
sub = orig.substr(1);
ASSERT_EQ(sub, targ);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment