From 035681cd5aa7f1f785e13f1deaa06b5094098466 Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Wed, 14 Jun 2023 11:14:02 +0200
Subject: [PATCH] STY: linting

---
 unittests/test_property.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unittests/test_property.py b/unittests/test_property.py
index d3c0fa4b..98282ec1 100644
--- a/unittests/test_property.py
+++ b/unittests/test_property.py
@@ -163,7 +163,7 @@ def test_remove_value_from_property():
     assert rec.get_property("testListProp1").datatype == db.LIST(db.INTEGER)
 
     rec.remove_value_from_property("testScalarProp2", True)
-    assert rec.get_property("testScalarProp2").value == False
+    assert rec.get_property("testScalarProp2").value is False
     assert rec.get_property("testScalarProp2").datatype == db.BOOLEAN
 
     # Simple removals from lists without emptying them
-- 
GitLab