Skip to content

Commit

Permalink
Fix build?
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-goode committed Oct 26, 2024
1 parent 7f52d57 commit f4bbd75
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ jobs:
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: fjordlauncher
name: unmojang
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}

- name: Run flake checks
Expand Down
1 change: 1 addition & 0 deletions launcher/minecraft/auth/AuthFlow.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <QObject>
#include <QSet>
#include <QVector>
#include <optional>

#include "minecraft/auth/AccountData.h"
#include "minecraft/auth/AuthStep.h"
Expand Down
1 change: 1 addition & 0 deletions launcher/minecraft/auth/MinecraftAccount.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include <QPair>
#include <QPixmap>
#include <QString>
#include <optional>

#include "AccountData.h"
#include "AuthSession.h"
Expand Down
6 changes: 3 additions & 3 deletions tests/Manifest_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <QTest>
#include <QTimer>

#include <iostream>
#include <sstream>

#include "Manifest.h"

Expand Down Expand Up @@ -93,7 +93,7 @@ A-Name-That-Is-Way-Too-Loooooooooooooooooooooooooooooooooooooooooooooooonooooooo
}
QVERIFY(caught);
}
void test_misingColon()
void test_missingColon()
{
std::istringstream iss{ "Manifest-Version 1.0" };
bool caught = false;
Expand All @@ -104,7 +104,7 @@ A-Name-That-Is-Way-Too-Loooooooooooooooooooooooooooooooooooooooooooooooonooooooo
}
QVERIFY(caught);
}
void test_misingSpace()
void test_missingSpace()
{
std::istringstream iss{ "Manifest-Version:1.0" };
bool caught = false;
Expand Down

0 comments on commit f4bbd75

Please sign in to comment.