From 937e971849baaf932355988e41a841b72731366d Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Thu, 18 Jul 2019 02:58:09 -0700 Subject: [PATCH] [objc] fix test so that it looks like it could compile Summary: The method defined in the interface didn't match the implementation. Caught by ulyssesr. Differential Revision: D16339179 fbshipit-source-id: 9cbb1dc74 --- infer/tests/codetoanalyze/objc/linters/optional.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/tests/codetoanalyze/objc/linters/optional.m b/infer/tests/codetoanalyze/objc/linters/optional.m index 5e85db1cc..bb411a4f5 100644 --- a/infer/tests/codetoanalyze/objc/linters/optional.m +++ b/infer/tests/codetoanalyze/objc/linters/optional.m @@ -13,7 +13,7 @@ @interface Bar : NSObject @property(weak, nonatomic) id delegate; -- (void)action; +- (void)unsafeAction; @end @implementation Bar