Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing committed Jul 5, 2020
2 parents 1621716 + 1621294 commit ff59964
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/test/effectchainslottest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ TEST_F(EffectChainSlotTest, ChainSlotMirrorsLoadedChain) {

StandardEffectRackPointer pRack = m_pEffectsManager->addStandardEffectRack();
EffectChainSlotPointer pChainSlot = pRack->getEffectChainSlot(iChainNumber);
pChainSlot->registerInputChannel(m_master);

QString group = StandardEffectRack::formatEffectChainSlotGroupString(
iRackNumber, iChainNumber);
Expand Down
5 changes: 3 additions & 2 deletions src/test/taglibtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ class TagLibTest : public testing::Test {
protected:
static QString generateTemporaryFileName(const QString& fileNameTemplate) {
QTemporaryFile tmpFile(fileNameTemplate);
tmpFile.setAutoRemove(true);
// The file must be opened to create it and to obtain
// its file name!
tmpFile.open();
DEBUG_ASSERT(tmpFile.exists());
const QString tmpFileName = tmpFile.fileName();
DEBUG_ASSERT(!tmpFileName.isEmpty());
return tmpFileName;
}

Expand Down

0 comments on commit ff59964

Please sign in to comment.