From 74f2c098c1029453a7de9a436de20bf6a17b338d Mon Sep 17 00:00:00 2001 From: CloudKeeper <46334817+CloudKeeper@users.noreply.github.com> Date: Sun, 3 Mar 2024 12:34:34 +1100 Subject: [PATCH] Update Unit-Testing.md Minor grammar corrections and inline link consistency. --- docs/source/Coding/Unit-Testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Coding/Unit-Testing.md b/docs/source/Coding/Unit-Testing.md index 0cffa20106..bb4310ccf9 100644 --- a/docs/source/Coding/Unit-Testing.md +++ b/docs/source/Coding/Unit-Testing.md @@ -132,7 +132,7 @@ These all use whatever setting you pass to them and works well for testing code - `EvenniaTest` - this sets up a full object environment for your test. All the created entities can be accesses as properties on the class: - `.account` - A fake [Account](evennia.accounts.accounts.DefaultAccount) named "TestAccount". - - `.account2` - Another [Account](evennia.accounts.accounts.DefaultAccount) named "TestAccount2" + - `.account2` - Another [Account](evennia.accounts.accounts.DefaultAccount) named "TestAccount2". - `.char1` - A [Character](evennia.objects.objects.DefaultCharacter) linked to `.account`, named `Char`. This has 'Developer' permissions but is not a superuser. - `.char2` - Another [Character](evennia.objects.objects.DefaultCharacter) linked to `account2`, named `Char2`.