From fe30abc49e9a1ee55ec5addaf33f372795b5cc0d Mon Sep 17 00:00:00 2001 From: "Tristan J. Schoenmakers" Date: Thu, 13 Jul 2023 15:53:30 +0200 Subject: [PATCH] add missing closing parenthesis in readme Signed-off-by: Tristan J. Schoenmakers --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ec1ce6df1..c2a3d3701 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,9 @@ namespace ExampleTest { // TIP: load your architecture once at the start to maximize performance of your tests private static readonly Architecture Architecture = new ArchLoader().LoadAssemblies( - System.Reflection.Assembly.Load("ExampleClassAssemblyName"), - System.Reflection.Assembly.Load("ForbiddenClassAssemblyName") - .Build(); + System.Reflection.Assembly.Load("ExampleClassAssemblyName"), + System.Reflection.Assembly.Load("ForbiddenClassAssemblyName") + ).Build(); // replace and with classes from the assemblies you want to test //declare variables you'll use throughout your tests up here