Skip to content

Commit c073371

Browse files
committed
chore: bump version in tests
chore: bump version in tests
1 parent 4caa453 commit c073371

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

service_contracts/test/FilecoinWarmStorageService.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5065,7 +5065,7 @@ contract FilecoinWarmStorageServiceUpgradeTest is Test {
50655065
if (logs[i].topics[0] == expectedTopic) {
50665066
// Decode and verify the event data
50675067
(string memory version, address implementation) = abi.decode(logs[i].data, (string, address));
5068-
assertEq(version, "0.3.0", "Version should be 0.3.0");
5068+
assertEq(version, "1.0.0", "Version should be 1.0.0");
50695069
assertTrue(implementation != address(0), "Implementation address should not be zero");
50705070
foundEvent = true;
50715071
break;

service_contracts/test/ServiceProviderRegistry.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ contract ServiceProviderRegistryTest is MockFVMTest {
3737

3838
function testInitialState() public view {
3939
// Check version
40-
assertEq(registry.VERSION(), "0.3.0", "Version should be 0.3.0");
40+
assertEq(registry.VERSION(), "1.0.0", "Version should be 1.0.0");
4141

4242
// Check owner
4343
assertEq(registry.owner(), owner, "Service provider should be deployer");

service_contracts/test/ServiceProviderRegistryFull.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ contract ServiceProviderRegistryFullTest is MockFVMTest {
8585
// ========== Initial State Tests ==========
8686

8787
function testInitialState() public view {
88-
assertEq(registry.VERSION(), "0.3.0", "Version should be 0.3.0");
88+
assertEq(registry.VERSION(), "1.0.0", "Version should be 1.0.0");
8989
assertEq(registry.owner(), owner, "Service provider should be deployer");
9090
assertEq(registry.getNextProviderId(), 1, "Next provider ID should start at 1");
9191
assertEq(registry.REGISTRATION_FEE(), 5 ether, "Registration fee should be 5 FIL");

0 commit comments

Comments
 (0)