From dc045ba02616aaff0d2e2dd3fab4a58c861247e1 Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Gond Date: Wed, 11 Sep 2024 13:38:26 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d88996..f7967fc 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ A test fixture can contain 1 or more test cases. Test cases are discovered when * _before\_(testname)_ - (optional) - if provided, is run prior to the 'run_' method. This method can be used to setup any test pre-conditions -* _run\_(testname)_ - (optional) - if provider, is run after 'before_' if before was provided, otherwise run first. This method is typically used to run the notebook under test +* _run\_(testname)_ - (optional) - if provided, is run after 'before_' if before was provided, otherwise run first. This method is typically used to run the notebook under test * _assertion\_(testname)_ (required) - run after 'run_', if run was provided. This method typically contains the test assertions