From dbaee108311fb89f063c65aa9c402dcccc997320 Mon Sep 17 00:00:00 2001 From: Andrii Landiak Date: Mon, 16 Sep 2024 17:51:29 +0300 Subject: [PATCH] Remove Ignore testPutAndGet in AttributeCacheServiceSqlTest --- .../service/attributes/sql/AttributeCacheServiceSqlTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/dao/src/test/java/org/thingsboard/server/dao/service/attributes/sql/AttributeCacheServiceSqlTest.java b/dao/src/test/java/org/thingsboard/server/dao/service/attributes/sql/AttributeCacheServiceSqlTest.java index 7795f10f61..95e3e15adc 100644 --- a/dao/src/test/java/org/thingsboard/server/dao/service/attributes/sql/AttributeCacheServiceSqlTest.java +++ b/dao/src/test/java/org/thingsboard/server/dao/service/attributes/sql/AttributeCacheServiceSqlTest.java @@ -15,7 +15,6 @@ */ package org.thingsboard.server.dao.service.attributes.sql; -import org.junit.Ignore; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.thingsboard.server.cache.TbCacheValueWrapper; @@ -46,7 +45,6 @@ public class AttributeCacheServiceSqlTest extends AbstractServiceTest { VersionedTbCache cache; @Test - @Ignore("Edge is not updating the version of an entity") public void testPutAndGet() { AttributeCacheKey testKey = new AttributeCacheKey(AttributeScope.CLIENT_SCOPE, DEVICE_ID, TEST_KEY); AttributeKvEntry testValue = new BaseAttributeKvEntry(new StringDataEntry(TEST_KEY, TEST_VALUE), 1, 1L);