@@ -448,7 +448,7 @@ def register_benchmark_entry_starting(self, result_dict: dict[str, Any], benchma
448448 if self .live_updates :
449449 if self ._parent_message is None :
450450 logger .warning (
451- "SlackSink: Warning: Ignoring attempt to post an entry starting message without a session summary message. Was iniatialize () called?"
451+ "SlackSink: Warning: Ignoring attempt to post an entry starting message without a session summary message. Was initialize () called?"
452452 )
453453 return
454454 self ._parent_message .update_entry (benchmark_entry .name , "▶️ running" )
@@ -457,7 +457,7 @@ def register_benchmark_entry_starting(self, result_dict: dict[str, Any], benchma
457457 def register_benchmark_entry_finished (self , result_dict : dict [str , Any ], benchmark_entry : Entry ) -> None :
458458 if self ._parent_message is None :
459459 logger .warning (
460- "SlackSink: Warning: Ignoring attempt to post an entry finished message without a session summary message. Was iniatialize () called?"
460+ "SlackSink: Warning: Ignoring attempt to post an entry finished message without a session summary message. Was initialize () called?"
461461 )
462462 return
463463 # Use the benchmark_entry to get any entry-specific settings for the Slack report
@@ -478,7 +478,7 @@ def register_benchmark_entry_finished(self, result_dict: dict[str, Any], benchma
478478 def finalize (self ) -> None :
479479 if self ._parent_message is None :
480480 logger .warning (
481- "SlackSink: Warning: Ignoring attempt to finalize without a session summary message. Was iniatialize () called?"
481+ "SlackSink: Warning: Ignoring attempt to finalize without a session summary message. Was initialize () called?"
482482 )
483483 return
484484 # Unconditionally posts all unposted messages.
0 commit comments