Skip to content

Commit

Permalink
Fix: Build error
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Aug 13, 2023
1 parent 4d78047 commit 3f1a83e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ def test_bpy_290_tweak(self):
rst_files = [f"{self.data_dir}/{f}" for f in rst_files]

analyzer = BaseAnalyzer()
analyzer.set_blender_version("2.90")
analyzer.set_target_version("2.90")
result = analyzer.analyze(rst_files)

self.assertEqual(len(result.section_info), 1)
Expand Down Expand Up @@ -827,7 +827,7 @@ def test_bge_support(self):
rst_files = [f"{self.data_dir}/{f}" for f in rst_files]

analyzer = BaseAnalyzer()
analyzer.enable_bge_support()
analyzer.set_target("upbge")
result = analyzer.analyze(rst_files)

self.assertEqual(len(result.section_info), 1)
Expand Down Expand Up @@ -875,7 +875,7 @@ def test_bge_support_no_module(self):
rst_files = [f"{self.data_dir}/{f}" for f in rst_files]

analyzer = BaseAnalyzer()
analyzer.enable_bge_support()
analyzer.set_target("upbge")
result = analyzer.analyze(rst_files)

self.assertEqual(len(result.section_info), 1)
Expand Down

0 comments on commit 3f1a83e

Please sign in to comment.