Skip to content

Commit

Permalink
chore: use the correct double-quote
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaraj-bh committed Jun 6, 2024
1 parent 15a8498 commit 0980268
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nix/grafana_test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ let
"weekStart": ""
}
'';
in {
in
{
services.grafana."gf1" =
{
enable = true;
Expand Down Expand Up @@ -81,7 +82,7 @@ in {
curl -sSfN -u $ADMIN:$PASSWORD $ROOT_URL/api/org/users | grep admin\@localhost
# The dashboard provisioner was used to create a dashboard.
curl -sSfN -u $ADMIN:$PASSWORD $ROOT_URL/api/dashboards/uid/${dashboardUid} -i
curl -sSfN -u $ADMIN:$PASSWORD $ROOT_URL/api/dashboards/uid/${dashboardUid} | grep '"title:"${dashboardTitle}"'
curl -sSfN -u $ADMIN:$PASSWORD $ROOT_URL/api/dashboards/uid/${dashboardUid} | grep '"title":"${dashboardTitle}"'
'';
name = "grafana-test";
};
Expand Down

0 comments on commit 0980268

Please sign in to comment.