From 0c8e8fb83b810e151d7ca8f993cad9e0be02a8c0 Mon Sep 17 00:00:00 2001 From: Kaevon <45157667+KaevonD@users.noreply.github.com> Date: Mon, 1 Aug 2022 18:34:23 -0700 Subject: [PATCH] Fixing wording --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6a52bd9c2..92ac2fb05 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ specific calls against mocks. Examples: - In instrumentation tests, a temporary folder is used to store the user's preferences, which is - wiped after the reach test. + wiped after each test. This allows using the real `DataStore` and exercising all related code, instead of mocking the flow of data updates. @@ -105,7 +105,7 @@ Examples: interface and also provide test-only hooks. `ViewModel` tests use these `Test` repositories, and thus can use the test-only hooks to manipulate the state of the `Test` repository and verify the resulting behavior, instead of - checking if specific repository methods were called. + checking that specific repository methods were called. # UI