Skip to content

Commit

Permalink
Update test_fullFile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Beakerboy authored Nov 15, 2023
1 parent 1ef7cca commit e3db8c0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/Functional/test_fullFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,15 @@ def test_full_file() -> None:
project.set_performance_cache(create_cache())
project.set_performance_cache_version(0x00B5)

base_path = ""src/vbaproject_compiler/blank_files/"
# Add Modules
this_workbook = create_doc_module(project, "ThisWorkbook", 0xB81C,
"0002081900000000C000000000000046",
"src/vbaproject_compiler/blank_files/ThisWorkbook.cls")
base_path + "ThisWorkbook.cls")

sheet1 = create_doc_module(project, "Sheet1", 0x9B9A,
"0002082000000000C000000000000046",
"src/vbaproject_compiler/blank_files/Sheet1.cls")
"0002082000000000C000000000000046",
base_path + "Sheet1.cls")

module1 = StdModule("Module1")
cookie = 0xB241
Expand Down

0 comments on commit e3db8c0

Please sign in to comment.