@@ -34,7 +34,7 @@ public function testStartWithTypedSearchAttributes(
3434 ->withValue (SearchAttributeKey::forFloat ('testFloat ' ), 1.1 )
3535 ->withValue (SearchAttributeKey::forInteger ('testInt ' ), -2 )
3636 ->withValue (SearchAttributeKey::forBool ('testBool ' ), false )
37- ->withValue (SearchAttributeKey::forString ( ' testString ' ), 'foo ' )
37+ ->withValue (SearchAttributeKey::forText ( ' testText ' ), 'foo ' )
3838 ->withValue (SearchAttributeKey::forKeyword ('testKeyword ' ), 'bar ' )
3939 ->withValue (SearchAttributeKey::forKeywordList ('testKeywordList ' ), ['baz ' ])
4040 ->withValue (
@@ -56,7 +56,7 @@ public function testStartWithTypedSearchAttributes(
5656 'testBool ' => false ,
5757 'testInt ' => -2 ,
5858 'testFloat ' => 1.1 ,
59- 'testString ' => 'foo ' ,
59+ 'testText ' => 'foo ' ,
6060 'testKeyword ' => 'bar ' ,
6161 'testKeywordList ' => ['baz ' ],
6262 'testDatetime ' => (new \DateTimeImmutable ('2019-01-01T00:00:00Z ' ))
@@ -78,7 +78,7 @@ public function testUpsertTypedSearchAttributes(
7878 ->withValue (SearchAttributeKey::forFloat ('testFloat ' ), 1.1 )
7979 ->withValue (SearchAttributeKey::forInteger ('testInt ' ), -2 )
8080 ->withValue (SearchAttributeKey::forBool ('testBool ' ), false )
81- ->withValue (SearchAttributeKey::forString ( ' testString ' ), 'foo ' )
81+ ->withValue (SearchAttributeKey::forText ( ' testText ' ), 'foo ' )
8282 ->withValue (SearchAttributeKey::forKeyword ('testKeyword ' ), 'bar ' )
8383 ->withValue (SearchAttributeKey::forKeywordList ('testKeywordList ' ), ['baz ' ])
8484 ->withValue (
@@ -92,7 +92,7 @@ public function testUpsertTypedSearchAttributes(
9292 'testBool ' => true ,
9393 'testInt ' => 42 ,
9494 'testFloat ' => 1.0 ,
95- 'testString ' => 'foo bar baz ' ,
95+ 'testText ' => 'foo bar baz ' ,
9696 'testKeyword ' => 'foo-bar-baz ' ,
9797 'testKeywordList ' => ['foo ' , 'bar ' , 'baz ' ],
9898 'testDatetime ' => '2021-01-01T00:00:00+00:00 ' ,
@@ -145,7 +145,7 @@ public function testUpsertTypedSearchAttributesUnset(
145145 ->withValue (SearchAttributeKey::forFloat ('testFloat ' ), 1.1 )
146146 ->withValue (SearchAttributeKey::forInteger ('testInt ' ), -2 )
147147 ->withValue (SearchAttributeKey::forBool ('testBool ' ), false )
148- ->withValue (SearchAttributeKey::forString ( ' testString ' ), 'foo ' )
148+ ->withValue (SearchAttributeKey::forText ( ' testText ' ), 'foo ' )
149149 ->withValue (SearchAttributeKey::forKeyword ('testKeyword ' ), 'bar ' )
150150 ->withValue (SearchAttributeKey::forKeywordList ('testKeywordList ' ), ['baz ' ])
151151 ->withValue (
@@ -158,7 +158,7 @@ public function testUpsertTypedSearchAttributesUnset(
158158 $ toSend = [
159159 'testInt ' => 42 ,
160160 'testBool ' => null ,
161- 'testString ' => 'bar ' ,
161+ 'testText ' => 'bar ' ,
162162 'testKeyword ' => null ,
163163 'testKeywordList ' => ['red ' ],
164164 'testDatetime ' => null ,
0 commit comments