Skip to content
Snippets Groups Projects
Verified Commit 21821dc9 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: fix tests

parent 136a8a10
No related branches found
No related tags found
1 merge request!6F update
Pipeline #11157 passed
Pipeline: caosdb-cppinttest

#11162

    ......@@ -79,8 +79,6 @@ TEST(test_entity, test_insert_with_role) { // NOLINT
    std::shared_ptr<transaction::EntityTransactionService::Stub>(nullptr));
    auto entity = Entity();
    entity.SetId("entity_id");
    entity.SetVersionId("version_id");
    entity.SetRole("Property");
    entity.SetDatatype("DOUBLE");
    entity.SetName("Length");
    ......@@ -89,8 +87,6 @@ TEST(test_entity, test_insert_with_role) { // NOLINT
    transaction.InsertEntity(&entity);
    EXPECT_EQ(entity.GetId(), "entity_id");
    EXPECT_EQ(entity.GetVersionId(), "version_id");
    EXPECT_EQ(entity.GetRole(), "Property");
    EXPECT_EQ(entity.GetDatatype(), "DOUBLE");
    EXPECT_EQ(entity.GetName(), "Length");
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment