diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-23 17:23:31 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-23 17:23:31 +0300 |
| commit | 3e8f4190bf666133b59112e351071c8d92b77def (patch) | |
| tree | bc4e2ad0aeeb0ba516aa8e5a2b85e8bd7075612e /src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php | |
| parent | e5fbde8bb9b21d264f71f25881b44db1af3d03c6 (diff) | |
| download | phorge-elasticsearch-modern-3e8f4190bf666133b59112e351071c8d92b77def.tar.gz phorge-elasticsearch-modern-3e8f4190bf666133b59112e351071c8d92b77def.zip | |
Tests: refresh stale docblock after engine abstract→class revert
The class docblock still described the engine as abstract, from
before commit 011eec1 reverted 'abstract class' to plain 'class'.
Updated wording to accurately describe the concrete engine and the
test-double's role.
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to 'src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php')
| -rw-r--r-- | src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php b/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php index 0362f95..7e20fdc 100644 --- a/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php +++ b/src/__tests__/VyOSElasticModernFulltextStorageEngineTestCase.php @@ -1,9 +1,9 @@ <?php /** - * Minimal concrete subclass for unit-testing the abstract engine. - * Only the abstract stubs from PhabricatorFulltextStorageEngine are - * satisfied here; no real Elasticsearch I/O occurs in tests. + * Test-double subclass of the concrete engine used by unit tests. + * Overrides host-dependent methods so tests run without a real + * PhabricatorSearchService; no actual Elasticsearch I/O occurs. */ final class VyOSElasticModernFulltextStorageEngineTestDouble extends VyOSElasticModernFulltextStorageEngine { |
