From cb2cf6411efa92f9b1d11fb966f35c5cae696841 Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Thu, 14 Apr 2022 14:13:22 +0200
Subject: [PATCH] STY: autopep8'ed test_name_properties

---
 tests/test_name_properties.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/tests/test_name_properties.py b/tests/test_name_properties.py
index 1718519..39e63e3 100644
--- a/tests/test_name_properties.py
+++ b/tests/test_name_properties.py
@@ -358,8 +358,10 @@ def test_name_resource():
     name_prop = db.Property(name="name").retrieve()
     alias_prop = db.Property(name="TestAlias").add_parent(name_prop).insert()
 
-
-    rt = db.RecordType(name="TestRT_primary").add_property(alias_prop, value="TestRT_alias").insert();
+    rt = db.RecordType(
+        name="TestRT_primary").add_property(
+        alias_prop,
+        value="TestRT_alias").insert()
 
     connection = db.get_connection()
 
@@ -372,4 +374,4 @@ def test_name_resource():
     print(result)
     names = [e.name for e in result]
     assert "TestRT_primary" in names
-    assert "TestRT_alias" in names ## the alias should also be included"
+    assert "TestRT_alias" in names  # the alias should also be included"
-- 
GitLab