commit a693bab2ba425ca3f055b6eac10f18fcba901d0a
parent e2fdc6301757a81d3168d3ce433a9445714b1fd0
Author: Chris Bracken <chris@bracken.jp>
Date: Wed, 18 Feb 2026 15:45:33 +0900
gout: free options in test
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/gout_tests.c b/src/gout_tests.c
@@ -14,4 +14,5 @@ UTEST(gout_options_create, ReturnsInitializedOptions) {
const char* argv[2] = {"path/to/gout", "some/path/myrepo"};
GoutOptions* options = gout_options_create(argc, argv);
ASSERT_NE(NULL, options);
+ gout_options_free(options);
}