diff options
| author | 2024-06-21 04:47:16 +0800 | |
|---|---|---|
| committer | 2024-06-21 04:47:16 +0800 | |
| commit | a2477b28057251c4685dbf0b56359dee7b595bfa (patch) | |
| tree | b1dcd4df60dfcfcc1113d9ee4cd3926a25ca158e /tests/test_corelib.py | |
| parent | 2e5b7e8ab75e0d80066d1ef5619d10fe827fd5a8 (diff) | |
| download | HydroRollCore-a2477b28057251c4685dbf0b56359dee7b595bfa.tar.gz HydroRollCore-a2477b28057251c4685dbf0b56359dee7b595bfa.zip | |
refactor(filetree): rename package's namespace as `hrc`
Diffstat (limited to 'tests/test_corelib.py')
| -rw-r--r-- | tests/test_corelib.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_corelib.py b/tests/test_corelib.py index 38c2ef9..64b11ce 100644 --- a/tests/test_corelib.py +++ b/tests/test_corelib.py @@ -1,15 +1,12 @@ -from hydro_roll_core import libcore +from hrc import LibCore -cb = libcore +cb = LibCore def main(): rule_pack = "example_rule_pack" result = cb.process_rule_pack(rule_pack) print(result) - print(cb.name) - cb.name = "a" - print(cb.name) if __name__ == "__main__": |
