Skip to content

Commit 18f1de4

Browse files
committed
ref: rename test to make it clearer
1 parent 52ea719 commit 18f1de4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/event_scanner/modes/historic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ mod tests {
147147
}
148148

149149
#[test]
150-
fn test_historic_scanner_builder_pattern_random_order_chaining() {
150+
fn test_historic_scanner_builder_pattern() {
151151
let config =
152152
HistoricScannerBuilder::new().to_block(200).max_block_range(50).from_block(100);
153153

src/event_scanner/modes/latest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ mod tests {
175175
}
176176

177177
#[test]
178-
fn test_latest_scanner_builder_pattern_random_order_chaining() {
178+
fn test_latest_scanner_builder_pattern() {
179179
let config = LatestScannerBuilder::new()
180180
.max_block_range(25)
181181
.block_confirmations(5)

src/event_scanner/modes/live.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ mod tests {
142142
}
143143

144144
#[test]
145-
fn test_live_scanner_builder_pattern_random_order_chaining() {
145+
fn test_live_scanner_builder_pattern() {
146146
let config = LiveScannerBuilder::new().max_block_range(25).block_confirmations(5);
147147

148148
assert_eq!(config.block_range_scanner.max_block_range, 25);

src/event_scanner/modes/sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ mod tests {
153153
}
154154

155155
#[test]
156-
fn test_sync_scanner_builder_pattern_random_order_chaining() {
156+
fn test_sync_scanner_builder_pattern() {
157157
let config = SyncScannerBuilder::new()
158158
.max_block_range(25)
159159
.block_confirmations(5)

0 commit comments

Comments
 (0)