Skip to content

Commit 0cf7f9e

Browse files
authored
fix: more spacing
1 parent e144365 commit 0cf7f9e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/UnitTests/ResourceHooks/AffectedEntitiesHelperTests.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ public class ToOne : Identifiable { }
1313

1414
public class AffectedEntitiesHelperTests
1515
{
16-
1716
public readonly HasOneAttribute FirstToOneAttr;
1817
public readonly HasOneAttribute SecondToOneAttr;
1918
public readonly HasManyAttribute ToManyAttr;
2019

21-
2220
public readonly Dictionary<RelationshipAttribute, HashSet<Dummy>> Relationships = new Dictionary<RelationshipAttribute, HashSet<Dummy>>();
2321
public readonly HashSet<Dummy> FirstToOnesEntities = new HashSet<Dummy> { new Dummy() { Id = 1 }, new Dummy() { Id = 2 }, new Dummy() { Id = 3 } };
2422
public readonly HashSet<Dummy> SecondToOnesEntities = new HashSet<Dummy> { new Dummy() { Id = 4 }, new Dummy() { Id = 5 }, new Dummy() { Id = 6 } };
@@ -132,7 +130,6 @@ public void EntityDiff_Loops_Over_Diffs()
132130
Assert.Contains(diff.Entity, AllEntities);
133131
Assert.Contains(diff.DatabaseValue, dbEntities);
134132
}
135-
136133
}
137134

138135
private void AssertRelationshipDictionaryGetters(Dictionary<RelationshipAttribute, HashSet<Dummy>> relationshipsDictionary,
@@ -161,6 +158,5 @@ private void AssertRelationshipDictionaryGetters(Dictionary<RelationshipAttribut
161158
});
162159
Assert.Empty(notTargeted);
163160
}
164-
165161
}
166-
}
162+
}

0 commit comments

Comments
 (0)