Skip to content

Commit

Permalink
fix: adjust config test with new celestia namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Feb 11, 2024
1 parent caaad78 commit beb3be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/saya/src/args/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ mod tests {
if let Some(DataAvailabilityConfig::Celestia(celestia_config)) = config.data_availability {
assert_eq!(celestia_config.node_url.as_str(), "http://localhost:26657/");
assert_eq!(celestia_config.node_auth_token, Some("your_auth_token".to_string()));
assert_eq!(celestia_config.namespace, "your_namespace");
assert_eq!(celestia_config.namespace, "katana");
} else {
panic!("Expected Celestia config");

Check warning on line 153 in bin/saya/src/args/mod.rs

View check run for this annotation

Codecov / codecov/patch

bin/saya/src/args/mod.rs#L153

Added line #L153 was not covered by tests
}
Expand Down

0 comments on commit beb3be1

Please sign in to comment.