From 3e7ce3b0fc4a08ce596091063cca0c66923368c4 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 21 May 2023 16:23:54 -0700 Subject: [PATCH] copy --- docs/ctags.md | 2 +- examples/add-test.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ctags.md b/docs/ctags.md index 53a60febb..cb0a0743e 100644 --- a/docs/ctags.md +++ b/docs/ctags.md @@ -129,7 +129,7 @@ Using only the meta-data in the map, GPT is able to: - Determine that it is a method of the `Command` class, so the test case will need to instantiate an instance to conduct the test. - Identify that creating a `Command` instance requires passing in `InputOutput` and `Coder` instances. - Figure out the arguments required to instantiate the `InputOuput` instance. - - The `Coder` class looks complex enough that it decides to use a `MagickMock` + - Decide that the `Coder` class looks complex enough to use a `MagickMock`. ## Try it out diff --git a/examples/add-test.md b/examples/add-test.md index 6a05f6662..48da2eacf 100644 --- a/examples/add-test.md +++ b/examples/add-test.md @@ -15,7 +15,7 @@ Using only the meta-data in the map, GPT is able to: - Determine that it is a method of the `Command` class, so the test case will need to instantiate an instance to conduct the test. - Identify that creating a `Command` instance requires passing in `InputOutput` and `Coder` instances. - Figure out the arguments required to instantiate the `InputOuput` instance. - - The `Coder` class looks complex enough that it decides to use a `MagickMock` + - Decide that the `Coder` class looks complex enough to use a `MagickMock`. The signature of `cmd_add()` doesn't have types, so GPT makes a reasonable but incorrect guess that it wants a `list` of files. The