Skip to content
Snippets Groups Projects
Verified Commit 34dabbb6 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

STY: Styling.

parent 733b301b
No related branches found
No related tags found
2 merge requests!61Release 0.3.0,!50ENH: Values can hold empty vector
Pipeline #51597 passed with warnings
Pipeline: caosdb-julialib

#51600

    Pipeline: CaosDB Octave library

    #51599

      Pipeline: caosdb-cppinttest

      #51598

        ......@@ -141,7 +141,7 @@ TEST(test_value, test_list) {
        auto empty_content = std::vector<int>();
        Value value_0(empty_content);
        EXPECT_TRUE(value_0.IsVector());
        auto list_value_0 = value_0.GetAsVector();
        auto const &list_value_0 = value_0.GetAsVector();
        EXPECT_EQ(list_value_0.size(), 0);
        EXPECT_TRUE(list_value_0.empty());
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment