diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-02-22 17:40:07 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-20 14:56:33 -0700 |
commit | ae289c923c4f896dca7e6696eef7ca35b10be9bf (patch) | |
tree | 142b53b46aa56b1ae7a2b236abd1088c7ac8a6f7 /tests | |
parent | e0ef86340f72ce508034815f1c5f8c695d31140d (diff) | |
download | PrismLauncher-ae289c923c4f896dca7e6696eef7ca35b10be9bf.tar.gz PrismLauncher-ae289c923c4f896dca7e6696eef7ca35b10be9bf.tar.bz2 PrismLauncher-ae289c923c4f896dca7e6696eef7ca35b10be9bf.zip |
fix: clean up initial review comments (flowin)
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/FileSystem_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/FileSystem_test.cpp b/tests/FileSystem_test.cpp index 169f0669..19565a99 100644 --- a/tests/FileSystem_test.cpp +++ b/tests/FileSystem_test.cpp @@ -72,15 +72,15 @@ class LinkTask : public Task { qDebug() << "EXPECTED: Link failure, Windows requires permissions for symlinks"; qDebug() << "atempting to run with privelage"; - connect(m_lnk, &FS::create_link::finishedPrivlaged, this, [&](bool gotResults){ + connect(m_lnk, &FS::create_link::finishedPrivileged, this, [&](bool gotResults){ if (gotResults) { emitSucceeded(); } else { - qDebug() << "Privlaged run exited without results!"; + qDebug() << "Privileged run exited without results!"; emitFailed(); } }); - m_lnk->runPrivlaged(); + m_lnk->runPrivileged(); } else { qDebug() << "Link Failed!" << m_lnk->getOSError().value() << m_lnk->getOSError().message().c_str(); } |