From 2afcd17c3d95c7dbff8d85f1b26cef25dec8397e Mon Sep 17 00:00:00 2001 From: Quajak Date: Mon, 19 Oct 2020 15:57:35 +0200 Subject: [PATCH] Fixed typo --- Tests/Kernels/ProcessorTests/Kernel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Kernels/ProcessorTests/Kernel.cs b/Tests/Kernels/ProcessorTests/Kernel.cs index 74b2c79cb..d9f457134 100644 --- a/Tests/Kernels/ProcessorTests/Kernel.cs +++ b/Tests/Kernels/ProcessorTests/Kernel.cs @@ -23,7 +23,7 @@ namespace ProcessorTests try { TestMultibootMemoryMap(); - TetsGetRam(); + TestGetRam(); TestVendorNameIsNotBlank(); TestCycleCount(); TestCycleRateIsNotZero(); @@ -39,7 +39,7 @@ namespace ProcessorTests } } - public void TetsGetRam() + public void TestGetRam() { Assert.IsTrue(CPU.GetAmountOfRAM() > 0, "CPU.GetAmountOfRAM() returns a positive value: " + CPU.GetAmountOfRAM()); }