From 754d6ed2c63b957a85d6932b4c2f920d071d3429 Mon Sep 17 00:00:00 2001 From: Borislav Stanimirov Date: Fri, 14 Jan 2022 05:48:25 +0200 Subject: [PATCH] Typo --- test/integration/idiosyncrasies.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/idiosyncrasies.md b/test/integration/idiosyncrasies.md index c6d4c48..bd4a0e9 100644 --- a/test/integration/idiosyncrasies.md +++ b/test/integration/idiosyncrasies.md @@ -12,7 +12,7 @@ class MyTest < IntegrationTest @x = 123 assert_equal 123, @x # Pass. @x is 123 end - def tese_something_else + def test_something_else assert_equal 123, @x # Fail! @x would be nil here end end @@ -28,7 +28,7 @@ class MyTest < IntegrationTest def test_something assert_equal 123, @x # Pass. @x is 123 thanks to setup end - def tese_something_else + def test_something_else assert_equal 123, @x # Pass. @x is 123 thanks to setup end end