@@ -28,7 +28,7 @@ describe('aiohttp onboarding docs', function () {
2828
2929 // Does not render config option
3030 expect (
31- screen . queryByText ( textWithMarkupMatcher ( / p r o f i l e s _ s a m p l e _ r a t e = 1 \. 0 , / ) )
31+ screen . queryByText ( textWithMarkupMatcher ( / p r o f i l e _ s e s s i o n _ s a m p l e _ r a t e = 1 \. 0 , / ) )
3232 ) . not . toBeInTheDocument ( ) ;
3333
3434 // Does not render config option
@@ -47,7 +47,7 @@ describe('aiohttp onboarding docs', function () {
4747
4848 // Does render transaction profiling config
4949 const matches = screen . getAllByText (
50- textWithMarkupMatcher ( / p r o f i l e s _ s a m p l e _ r a t e = 1 \. 0 , / )
50+ textWithMarkupMatcher ( / p r o f i l e _ s e s s i o n _ s a m p l e _ r a t e = 1 \. 0 , / )
5151 ) ;
5252 expect ( matches . length ) . toBeGreaterThan ( 0 ) ;
5353 matches . forEach ( match => expect ( match ) . toBeInTheDocument ( ) ) ;
@@ -68,7 +68,7 @@ describe('aiohttp onboarding docs', function () {
6868
6969 // Does not render transaction profiling config
7070 expect (
71- screen . queryByText ( textWithMarkupMatcher ( / p r o f i l e s _ s a m p l e _ r a t e : 1 \. 0 , / ) )
71+ screen . queryByText ( textWithMarkupMatcher ( / p r o f i l e _ s e s s i o n _ s a m p l e _ r a t e : 1 \. 0 , / ) )
7272 ) . not . toBeInTheDocument ( ) ;
7373
7474 // Does render continuous profiling config
0 commit comments