Skip to content

Commit 4e42588

Browse files
Sujit Maharjanfacebook-github-bot
authored andcommitted
Removing typo sss in spelling of the compression (facebook#13735)
Summary: Corrected misspelling of "Compression". Changed "Compresssion" to "Compression". Pull Request resolved: facebook#13735 Test Plan: All the test case for compression is still working properly. ```bash ./compression_test ``` Reviewed By: hx235 Differential Revision: D77390273 Pulled By: shubhajeet fbshipit-source-id: f5310e393e23f5d6c8310154cb929db4b6c60a77
1 parent 8b84390 commit 4e42588

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

util/compression_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,10 @@ class CostAwareTestFlushBlockPolicyFactory : public FlushBlockPolicyFactory {
293293
private:
294294
int window_;
295295
};
296-
class DBCompresssionCostPredictor : public DBTestBase {
296+
class DBCompressionCostPredictor : public DBTestBase {
297297
public:
298298
Options options;
299-
DBCompresssionCostPredictor()
299+
DBCompressionCostPredictor()
300300
: DBTestBase("db_cpuio_skip", /*env_do_fsync=*/true),
301301
options(CurrentOptions()) {
302302
options.compression_manager = CreateCostAwareCompressionManager();
@@ -311,7 +311,7 @@ class DBCompresssionCostPredictor : public DBTestBase {
311311
DestroyAndReopen(options);
312312
}
313313
};
314-
TEST_F(DBCompresssionCostPredictor, CostAwareCompressorManager) {
314+
TEST_F(DBCompressionCostPredictor, CostAwareCompressorManager) {
315315
// making sure that the compression is supported
316316
if (!ZSTD_Supported()) {
317317
return;

0 commit comments

Comments
 (0)