Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ametel01 committed Apr 1, 2024
1 parent 15f0e2c commit 447f517
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:

jobs:
sozo-test:
nogame-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/systems/colony/tests.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use nogame::models::{
ColonyOwner, ColonyPosition, ColonyCount, ColonyResourceTimer, PlanetColoniesCount,
ColonyResource, ColonyShips, ColonyDefences, ColonyCompounds
},
dockyard::PlanetShips,tech::PlanetTechs
dockyard::PlanetShips, tech::PlanetTechs
};
use nogame::systems::{
colony::contract::{IColonyActionsDispatcher, IColonyActionsDispatcherTrait},
Expand Down
4 changes: 3 additions & 1 deletion contracts/src/systems/defence/tests.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ use debug::PrintTrait;
use dojo::world::{IWorldDispatcherTrait, IWorldDispatcher};
use nogame::data::types::DefenceBuildType;
use nogame::libraries::{constants, names::Names};
use nogame::models::{compound::PlanetCompounds, defence::PlanetDefences, planet::PlanetResource, tech::PlanetTechs};
use nogame::models::{
compound::PlanetCompounds, defence::PlanetDefences, planet::PlanetResource, tech::PlanetTechs
};
use nogame::systems::{
defence::contract::{IDefenceActionsDispatcher, IDefenceActionsDispatcherTrait},
game::contract::{IGameActionsDispatcher, IGameActionsDispatcherTrait},
Expand Down
4 changes: 3 additions & 1 deletion contracts/src/systems/dockyard/tests.cairo
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
use dojo::world::{IWorldDispatcherTrait, IWorldDispatcher};
use nogame::data::types::ShipBuildType;
use nogame::libraries::names::Names;
use nogame::models::{compound::PlanetCompounds, dockyard::PlanetShips, planet::PlanetResource, tech::PlanetTechs};
use nogame::models::{
compound::PlanetCompounds, dockyard::PlanetShips, planet::PlanetResource, tech::PlanetTechs
};
use nogame::systems::{
dockyard::contract::{IDockyardActionsDispatcher, IDockyardActionsDispatcherTrait},
game::contract::{IGameActionsDispatcher, IGameActionsDispatcherTrait},
Expand Down

0 comments on commit 447f517

Please sign in to comment.